R
Runtipi3mo ago
justme

How to make natively installed apps accessible via URL?

Hi, just a tiny question. I have AMP (https://cubecoders.com/AMP) installed on the same server as Runtipi. How can I make the AMP website accessible via the integrated reverse proxy? So it's accessible at amp.domain.tld. Right now it only opens the Runtipi dashboard. I don't think it's possible via the GUI? Any help would be greatly appreciated. Thank you! :OathBlank:
CubeCoders AMP
The powerful but simple to use game server control panel. Supports both Windows and Linux, easy to install and supports dozens of game servers and applications.
3 Replies
Stavros
Stavros3mo ago
You will probably need to use the dynamic traefik config file Located in traefik/dynamic/dynamic.yml
jamolopa
jamolopa3mo ago
hey so, go to /runtipi/traefik/dynamic and create a file, you can name it amp.yaml and place the contents:
http:
routers:
amp-router:
rule: "Host(`https://amp.domain.com`)" #adjust as needed
entryPoints:
- websecure
service: amp-native-app
tls:
certResolver: myresolver

services:
amp-native-app:
loadBalancer:
servers:
- url: "http://IPADDRESS:PORT"
http:
routers:
amp-router:
rule: "Host(`https://amp.domain.com`)" #adjust as needed
entryPoints:
- websecure
service: amp-native-app
tls:
certResolver: myresolver

services:
amp-native-app:
loadBalancer:
servers:
- url: "http://IPADDRESS:PORT"
assuming you have all setup with let'sencrypt that'll do it

Did you find this page helpful?