HTTP and HTTPS on difrent port #2653
missosss123
started this conversation in
General
Replies: 1 comment 5 replies
-
It should be possible from what i know (Docker doesn't block that kind of config), but the question is, what advantage does it offer you ? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Good day.
I would like to ask if it is possible on jc21/nginx-proxy-manager to change port 80 to 82 and 443 to 444 like this:
version: '3'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
ports:
'82:80'
'83:81'
'444:443'
environment:
DB_MYSQL_HOST: "db"
DB_MYSQL_PORT: 3306
DB_MYSQL_USER: "usr"
DB_MYSQL_PASSWORD: "passwd"
DB_MYSQL_NAME: "npm"
volumes:
./data:/data
./letsencrypt:/etc/letsencrypt
db:
image: 'jc21/mariadb-aria:latest'
environment:
MYSQL_ROOT_PASSWORD: 'passwd'
MYSQL_DATABASE: 'npm'
MYSQL_USER: 'usr'
MYSQL_PASSWORD: 'passwd'
volumes:
Beta Was this translation helpful? Give feedback.
All reactions