1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flarum_ynh.git synced 2024-09-03 18:36:24 +02:00
flarum_ynh/conf/nginx.conf

83 lines
2.3 KiB
Nginx Configuration File
Raw Normal View History

2019-09-22 18:08:56 +02:00
location ^~ __PATH__ {
2017-07-23 13:42:48 +02:00
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2019-08-24 12:54:18 +02:00
alias __FINALPATH__/public/;
index index.php;
# Bug in Nginx with locations and aliases (see http://stackoverflow.com/a/35102259 )
2019-08-24 12:54:18 +02:00
# try_files $uri $uri/ /index.php?$query_string; # will not work for /admin and /api
if (!-e $request_filename) { rewrite ^ __PATH_HACK__/index.php last; }
2016-10-05 19:44:08 +02:00
location ~* \.php$ {
fastcgi_split_path_info ^(.+.php)(/.+)$;
2019-08-24 12:54:18 +02:00
fastcgi_pass unix:/var/run/php-fpm-__NAME__.sock;
2016-10-05 19:44:08 +02:00
include fastcgi_params;
2017-02-22 18:53:47 +01:00
fastcgi_param SCRIPT_FILENAME $request_filename;
2016-10-05 19:44:08 +02:00
fastcgi_param HTTP_PROXY ""; # Fix for https://httpoxy.org/ vulnerability
fastcgi_index index.php;
2016-10-08 19:08:37 +02:00
fastcgi_read_timeout 600;
2016-10-05 19:44:08 +02:00
}
2019-08-24 12:54:18 +02:00
# Expire rules for static content
location ~* \.(?:manifest|appcache|html?|xml|json)$ {
more_set_headers "Cache-Control: max-age=0";
2019-08-24 12:54:18 +02:00
}
location ~* \.(?:rss|atom)$ {
more_set_headers "Cache-Control: max-age=3600";
2019-08-24 12:54:18 +02:00
}
location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|mp4|ogg|ogv|webm|htc)$ {
more_set_headers "Cache-Control: max-age=2592000";
2019-08-24 12:54:18 +02:00
access_log off;
2016-10-05 19:44:08 +02:00
}
2019-08-24 12:54:18 +02:00
location ~* \.(?:css|js)$ {
more_set_headers "Cache-Control: max-age=31536000";
2019-08-24 12:54:18 +02:00
access_log off;
2016-10-05 19:44:08 +02:00
}
2019-08-24 12:54:18 +02:00
location ~* \.(?:ttf|ttc|otf|eot|woff|woff2)$ {
more_set_headers "Cache-Control: max-age=2592000";
2019-08-24 12:54:18 +02:00
access_log off;
}
# Gzip compression
2016-10-05 19:44:08 +02:00
gzip on;
2019-08-24 12:54:18 +02:00
gzip_comp_level 5;
gzip_min_length 256;
2016-10-05 19:44:08 +02:00
gzip_proxied any;
2019-08-24 12:54:18 +02:00
gzip_vary on;
gzip_types
application/atom+xml
application/javascript
application/json
application/ld+json
application/manifest+json
application/rss+xml
application/vnd.geo+json
application/vnd.ms-fontobject
application/x-font-ttf
application/x-web-app-manifest+json
application/xhtml+xml
application/xml
font/opentype
image/bmp
image/svg+xml
image/x-icon
text/cache-manifest
text/css
text/plain
text/vcard
text/vnd.rim.location.xloc
text/vtt
text/x-component
text/x-cross-domain-policy;
2016-10-05 19:44:08 +02:00
# Include SSOWAT user panel.
# include conf.d/yunohost_panel.conf.inc;
2016-10-05 19:44:08 +02:00
}