This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
nginxproxy [2021/08/25 15:51] – alexk7110 | nginxproxy [2021/08/28 10:37] (current) – [docker-compose.yml] alexk7110 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== nginx Proxy Manager Troubleshooting ====== | ====== nginx Proxy Manager Troubleshooting ====== | ||
- | Since the admin panel for this app is coming out of port 81 on of the ways you can connect to it is by ssh port forwarding. | + | Since the **admin panel** for this app is coming out of **port 81** one of the ways you can connect to it is by ssh port forwarding. |
From your local pc you open a terminal and write the following accordingly: | From your local pc you open a terminal and write the following accordingly: | ||
ssh -L 8081: | ssh -L 8081: | ||
+ | |||
+ | You can always setup wireguard on the server and be done with it but the above solution is way faster for some initial setups. | ||
+ | |||
+ | ===== Default credentials ===== | ||
+ | Default Admin User: | ||
+ | |||
+ | Email: | ||
+ | |||
+ | Password: '' | ||
+ | ---- | ||
+ | ===== docker-compose.yml ===== | ||
+ | <code yaml docker-compose.yml> | ||
+ | --- | ||
+ | services: | ||
+ | app: | ||
+ | image: ' | ||
+ | restart: unless-stopped | ||
+ | ports: | ||
+ | - ' | ||
+ | - ' | ||
+ | - ' | ||
+ | environment: | ||
+ | DB_MYSQL_HOST: | ||
+ | DB_MYSQL_PORT: | ||
+ | DB_MYSQL_USER: | ||
+ | DB_MYSQL_PASSWORD: | ||
+ | DB_MYSQL_NAME: | ||
+ | volumes: | ||
+ | - ./ | ||
+ | - ./ | ||
+ | db: | ||
+ | image: ' | ||
+ | restart: unless-stopped | ||
+ | environment: | ||
+ | MYSQL_ROOT_PASSWORD: | ||
+ | MYSQL_DATABASE: | ||
+ | MYSQL_USER: ' | ||
+ | MYSQL_PASSWORD: | ||
+ | volumes: | ||
+ | - ./ | ||
+ | </ |