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
Moul d0ec6502f2 [mod] #100: Define clearly ports variable names
Check ports are available locally
2024-02-21 15:08:58 +01:00

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:__WEB_ADMIN_PORT__;
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:__WEB_ADMIN_PORT__;
}
location ~ /webmin {
proxy_pass http://localhost:__WEB_ADMIN_PORT__$uri;
}
location ~ ^/bma(.*)$ {
proxy_pass http://localhost:__LOCAL_BMA_PORT__$1$is_args$args;
}
location /ws2p {
proxy_pass http://localhost:__LOCAL_WS2P_PORT__;
}
}