1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/octoprint_ynh.git synced 2024-09-03 19:46:26 +02:00
octoprint_ynh/conf/nginx.conf
bendia a2ce9e4aed Add prox_set_header X-scheme $scheme
From Octoprint reverse proxy configuration examples
2021-07-13 20:28:27 +02:00

19 lines
508 B
Nginx Configuration File

location / {
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $host;
proxy_redirect http:// https://;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header X-Scheme $scheme;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
client_max_body_size 1G;
}