mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
Fix nginx config
This commit is contained in:
parent
50337682c5
commit
6e4f6fb054
1 changed files with 57 additions and 45 deletions
|
@ -1,26 +1,36 @@
|
|||
location __PATH__ {
|
||||
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||||
location __PATH__/ {
|
||||
|
||||
# Path to source
|
||||
alias __FINALPATH__/ ;
|
||||
|
||||
|
||||
# Force usage of https
|
||||
if ($scheme = http) {
|
||||
rewrite ^ https://$server_name$request_uri? permanent;
|
||||
}
|
||||
|
||||
index index.php;
|
||||
|
||||
client_max_body_size 30M;
|
||||
|
||||
try_files $uri $uri/ index.php;
|
||||
|
||||
if (!-e $request_filename)
|
||||
{
|
||||
rewrite ^/([^/]*)/robots\.txt$ __PATH__/spip.php?page=robots.txt last;
|
||||
rewrite ^/([^/]*)/sitemap\.xml$ __PATH__/spip.php?page=sitemap.xml last;
|
||||
rewrite ^(.+)$ __PATH__/index.php?q=$1 last;
|
||||
}
|
||||
if ($scheme = http) {
|
||||
rewrite ^ https://$server_name$request_uri? permanent;
|
||||
}
|
||||
client_max_body_size 30m;
|
||||
|
||||
# Add headers to serve security related headers
|
||||
add_header Strict-Transport-Security "max-age=15768000;";
|
||||
add_header X-Content-Type-Options nosniff;
|
||||
add_header X-Frame-Options "SAMEORIGIN";
|
||||
add_header X-XSS-Protection "1; mode=block";
|
||||
add_header X-Robots-Tag none;
|
||||
add_header X-Download-Options noopen;
|
||||
add_header X-Permitted-Cross-Domain-Policies none;
|
||||
more_set_header Strict-Transport-Security "max-age=15768000;";
|
||||
more_set_header X-Content-Type-Options nosniff;
|
||||
more_set_header X-Frame-Options "SAMEORIGIN";
|
||||
more_set_header X-XSS-Protection "1; mode=block";
|
||||
more_set_header X-Robots-Tag none;
|
||||
more_set_header X-Download-Options noopen;
|
||||
more_set_header X-Permitted-Cross-Domain-Policies none;
|
||||
|
||||
location ~^/(tmp|config|\.ht)/{
|
||||
deny all;
|
||||
|
@ -32,11 +42,13 @@ location __PATH__ {
|
|||
# cacher.
|
||||
rewrite ^/([^/]*)/favicon\.ico$ __PATH__/spip.php?page=favicon.ico last;
|
||||
expires 1w;
|
||||
add_header Cache-Control public;
|
||||
more_set_header Cache-Control public;
|
||||
}
|
||||
|
||||
location ~ [^/]\.php(/|$) {
|
||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||
fastcgi_pass unix:/var/run/php/php7.0-fpm-__NAME__.sock;
|
||||
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param REMOTE_USER $remote_user;
|
||||
|
|
Loading…
Reference in a new issue