2022-06-23 08:54:56 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
2017-12-05 19:36:40 +01:00
|
|
|
|
2022-06-23 08:54:56 +02:00
|
|
|
# This is important for user's privacy !
|
|
|
|
access_log off;
|
|
|
|
error_log /var/log/nginx/lutim.error.log;
|
2015-03-16 21:10:39 +01:00
|
|
|
|
2023-04-16 17:12:12 +02:00
|
|
|
# This is important! Make it OK with your Lutim configuration
|
2022-06-23 08:54:56 +02:00
|
|
|
client_max_body_size 40M;
|
2015-03-16 21:10:39 +01:00
|
|
|
|
2024-02-20 06:44:03 +01:00
|
|
|
proxy_pass http://127.0.0.1:__PORT__;
|
2015-03-16 21:10:39 +01:00
|
|
|
|
2022-06-23 08:54:56 +02:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2015-03-16 21:10:39 +01:00
|
|
|
|
2022-06-23 08:54:56 +02:00
|
|
|
# Lutim reads this header and understands that the current session is actually HTTPS.
|
|
|
|
# Enable it if you run a HTTPS server (in this case, don't forgot to change the listen port
|
|
|
|
proxy_set_header X-Forwarded-Proto https;
|
2015-03-16 21:10:39 +01:00
|
|
|
|
2022-06-23 08:54:56 +02:00
|
|
|
# We expect the downsteam servers to redirect to the right hostname, so don't do any rewrite
|
|
|
|
proxy_redirect off;
|
2015-03-16 21:10:39 +01:00
|
|
|
|
2022-06-23 08:54:56 +02:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2015-03-16 21:10:39 +01:00
|
|
|
}
|