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

84 lines
2.3 KiB
Nginx Configuration File
Raw Normal View History

2020-04-06 10:41:51 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
2023-09-14 15:23:23 +02:00
alias __INSTALL_DIR__/public/;
2019-08-24 12:54:18 +02:00
index index.php;
# Bug in Nginx with locations and aliases (see http://stackoverflow.com/a/35102259 )
2020-12-05 12:37:00 +01:00
try_files $uri $uri/ __PATH__/__PATH__/index.php?$query_string;
2016-10-05 19:44:08 +02:00
location ~* \.php$ {
fastcgi_split_path_info ^(.+.php)(/.+)$;
2020-06-12 05:42:02 +02:00
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-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
# Allows file upload, e.g. fof/upload.
client_max_body_size 100M;
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
}