1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/duniter_ynh.git synced 2024-09-03 18:26:35 +02:00
duniter_ynh/conf/nginx.conf

35 lines
965 B
Nginx Configuration File

location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://localhost:__PORT_WEB_ADMIN__;
proxy_redirect off;
# Socket.io support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400s;
proxy_send_timeout 86400s;
# Include SSOWAT user panel
access_by_lua_file /usr/share/ssowat/access.lua;
location ~ \.(js|css|woff|woff2|ttf|png) {
proxy_pass http://localhost:__PORT_WEB_ADMIN__;
}
location ~ ^/webmin {
proxy_pass http://localhost:__PORT_WEB_ADMIN__$uri;
}
location ~ ^/bma(.*)$ {
proxy_pass http://localhost:__PORT_LOCAL_BMA__$1$is_args$args;
}
location /ws2p {
proxy_pass http://localhost:__PORT_LOCAL_WS2P__;
}
}