2020-06-10 21:56:10 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
|
|
|
|
location ^~ __PATH__/ {
|
2020-05-02 10:17:12 +02:00
|
|
|
|
|
|
|
# Path to source
|
2020-05-02 17:16:41 +02:00
|
|
|
alias __FINALPATH__/public/ ;
|
|
|
|
|
2020-06-10 21:56:10 +02:00
|
|
|
location __PATH__/ {
|
|
|
|
rewrite ^ __PATH__/index.php;
|
|
|
|
}
|
2020-05-02 10:17:12 +02:00
|
|
|
|
|
|
|
# Force usage of https
|
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
|
|
|
|
2020-06-10 21:56:10 +02:00
|
|
|
# Add headers to serve security related headers
|
|
|
|
more_set_headers "Strict-Transport-Security: max-age=15768000; includeSubDomains; preload;";
|
|
|
|
more_set_headers "X-Content-Type-Options: nosniff";
|
|
|
|
more_set_headers "X-XSS-Protection: 1; mode=block";
|
|
|
|
more_set_headers "X-Robots-Tag: none";
|
|
|
|
more_set_headers "X-Download-Options: noopen";
|
|
|
|
more_set_headers "X-Permitted-Cross-Domain-Policies: none";
|
|
|
|
more_set_headers "Referrer-Policy: no-referrer";
|
|
|
|
|
|
|
|
#index index.php;
|
2020-05-02 10:17:12 +02:00
|
|
|
|
2020-06-10 21:56:10 +02:00
|
|
|
location ~ ^__PATH__/index\.php(/.*|)$ {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*|)$;
|
|
|
|
set $path_info $fastcgi_path_info;
|
2020-05-02 10:17:12 +02:00
|
|
|
fastcgi_pass unix:/var/run/php/php7.0-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;
|
|
|
|
}
|
|
|
|
|
2020-06-10 21:56:10 +02:00
|
|
|
# Adding the cache control header for js and css files
|
|
|
|
location ~ \.(?:css|js|woff2?|svg|gif)$ {
|
|
|
|
try_files $uri __PATH__/index.php$request_uri;
|
|
|
|
more_set_headers "Cache-Control: public, max-age=15778463";
|
|
|
|
# Add headers to serve security related headers
|
|
|
|
more_set_headers "Strict-Transport-Security: max-age=15768000";
|
|
|
|
more_set_headers "X-Content-Type-Options: nosniff";
|
|
|
|
more_set_headers "X-XSS-Protection: 1; mode=block";
|
|
|
|
more_set_headers "X-Robots-Tag: none";
|
|
|
|
more_set_headers "X-Download-Options: noopen";
|
|
|
|
more_set_headers "X-Permitted-Cross-Domain-Policies: none";
|
|
|
|
more_set_headers "Referrer-Policy: no-referrer";
|
|
|
|
|
|
|
|
# Optional: Don't log access to assets
|
|
|
|
access_log off;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~* \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
|
|
|
|
try_files $uri __FINALPATH__/index.php$request_uri;
|
|
|
|
# Optional: Don't log access to other assets
|
|
|
|
access_log off;
|
|
|
|
}
|
|
|
|
|
2020-05-02 17:16:41 +02:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|