We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to change port assignments from 443 -> 9443 doesn't seem to be working
Run command:
podman run -d \ --name=uisp \ --restart=unless-stopped \ -e PUBLIC_HTTPS_PORT=9443 \ -e PUBLIC_WS_PORT=9443 \ -e HTTPS_PORT=9443 \ -e HTTP_PORT=9080 \ -p 9080:9080 \ -p 9443:9443 \ -p 2055:2055/udp \ -e TZ='America/New_York' \ -v ~/uisp:/config:Z \ nico640/docker-unms:latest
Trying to visit, I get "Secure connection failed. However, if I run as:
podman run -d \ --name uisp \ --restart=unless-stopped \ -e PUBLIC_HTTPS_PORT=9443 \ -e PUBLIC_WS_PORT=9443 \ -e HTTPS_PORT=9443 \ -e HTTP_PORT=9080 \ -p 9443:9443 \ -p 9080:9080 \ -p 8444:443 \ -p 8081:80 \ -p 2055:2055/udp \ -e TZ='America/New_York' \ -v ~/uisp:/config:Z \ nico640/docker-unms:latest
I can view the application at :8444
:9443 is listed in both: semanage port -l | grep http_port_t firewall-cmd --list-all
semanage port -l | grep http_port_t
firewall-cmd --list-all
The text was updated successfully, but these errors were encountered:
Sounds like the nginx config doesn't get updated correctly. Can you try to execute /refresh-configuration.sh in the container and see what it retuns?
/refresh-configuration.sh
Sorry, something went wrong.
No branches or pull requests
Trying to change port assignments from 443 -> 9443 doesn't seem to be working
Run command:
Trying to visit, I get "Secure connection failed. However, if I run as:
I can view the application at :8444
:9443 is listed in both:
semanage port -l | grep http_port_t
firewall-cmd --list-all
The text was updated successfully, but these errors were encountered: