You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any things, like other ports, to consider when proxying through nginx to be able to publish as https?
I am trying with this configuration in nginx:
location /brave {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:5000;
proxy_redirect http://localhost:5000https://example.domain.com;
}
Or there is maybe built-in functionality to enable ssl?
Thank you.
The text was updated successfully, but these errors were encountered:
Hello and congratulations on this awsome project.
Is there any things, like other ports, to consider when proxying through nginx to be able to publish as https?
I am trying with this configuration in nginx:
location /brave {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:5000;
proxy_redirect http://localhost:5000 https://example.domain.com;
}
Or there is maybe built-in functionality to enable ssl?
Thank you.
The text was updated successfully, but these errors were encountered: