mirror of
https://github.com/YunoHost-Apps/yunorunner_ynh.git
synced 2024-09-03 20:36:13 +02:00
42 lines
1.3 KiB
Nginx Configuration File
42 lines
1.3 KiB
Nginx Configuration File
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||
|
location __PATH__/ {
|
||
|
alias __FINALPATH__/;
|
||
|
|
||
|
if ($scheme = http) {
|
||
|
rewrite ^ https://$server_name$request_uri? permanent;
|
||
|
}
|
||
|
|
||
|
proxy_pass http://127.0.0.1:4242;
|
||
|
|
||
|
# proxy_http_version 1.1;
|
||
|
# proxy_set_header Upgrade $http_upgrade;
|
||
|
# proxy_set_header Connection "Upgrade";
|
||
|
|
||
|
# 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_set_header X-NginX-Proxy true;
|
||
|
# proxy_set_header X-Forwarded-User $remote_user;
|
||
|
|
||
|
# sendfile off;
|
||
|
|
||
|
# proxy_max_temp_file_size 0;
|
||
|
|
||
|
# client_max_body_size 10m;
|
||
|
# client_body_buffer_size 128k;
|
||
|
|
||
|
# proxy_connect_timeout 90;
|
||
|
# proxy_send_timeout 90;
|
||
|
# proxy_read_timeout 90;
|
||
|
|
||
|
# proxy_buffer_size 4k;
|
||
|
# proxy_buffers 4 32k;
|
||
|
# proxy_busy_buffers_size 64k;
|
||
|
# proxy_temp_file_write_size 64k;
|
||
|
|
||
|
# Include SSOWAT user panel.
|
||
|
include conf.d/yunohost_panel.conf.inc;
|
||
|
}
|