Skip to content
New issue

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

Tiledesk URL Redirects to port 8081 instead of Nginx #11

Open
securewebsite opened this issue Feb 6, 2023 · 1 comment
Open

Tiledesk URL Redirects to port 8081 instead of Nginx #11

securewebsite opened this issue Feb 6, 2023 · 1 comment

Comments

@securewebsite
Copy link

I am using TileDesk Docker version. I have configured host Nginx Configuration to use SSL Certificate but website goes to 8081 port it redirect to 8081 instead of staying at 443.

@securewebsite
Copy link
Author

securewebsite commented Feb 6, 2023

Here is nginx.conf file

map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
server_name td.plzhelp.org;
location / {
proxy_pass http://localhost:8081;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant