1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00
apps/tools/app_generator/templates/nginx.j2

35 lines
1,023 B
Django/Jinja

#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
{% if data.main_technology in ["none", "php"] %}
# Path to source
alias __INSTALL_DIR__/;
{% endif %}
client_max_body_size 10M;
{% if data.main_technology == "php" %}
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
{% elif data.main_technology not in ["php", "none"] %}
proxy_pass http://127.0.0.1:__PORT__;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
# preserve client IP
proxy_set_header X-Forwarded-For $remote_addr;
{% endif %}
# Include SSOWAT user panel's shortcut tile.
include conf.d/yunohost_panel.conf.inc;
}