Last active
July 26, 2017 13:01
-
-
Save agoalofalife/eedf0640b047c345d017544f0cd83290 to your computer and use it in GitHub Desktop.
flarum ngnix setting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
index index.php; | |
server_name flarum.dev; | |
error_log /var/log/nginx/error.log; | |
access_log /var/log/nginx/access.log; | |
root /var/www/flarum.dev; | |
location / { try_files $uri $uri/ /index.php?$query_string; } | |
location /api { try_files $uri $uri/ /api.php?$query_string; } | |
location /admin { try_files $uri $uri/ /admin.php?$query_string; } | |
location /flarum { | |
deny all; | |
return 404; | |
} | |
location ~* \.php$ { | |
try_files $uri =404; | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_pass php:9000; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
fastcgi_param PATH_INFO $fastcgi_path_info; | |
fastcgi_buffers 16 16k; | |
fastcgi_buffer_size 32k; | |
} | |
location ~* \.html$ { | |
expires -1; | |
} | |
location ~* \.(css|js|gif|jpe?g|png)$ { | |
expires 1M; | |
add_header Pragma public; | |
add_header Cache-Control "public, must-revalidate, proxy-revalidate"; | |
} | |
gzip on; | |
gzip_http_version 1.1; | |
gzip_vary on; | |
gzip_comp_level 6; | |
gzip_proxied any; | |
gzip_types application/atom+xml | |
application/javascript | |
application/json | |
application/vnd.ms-fontobject | |
application/x-font-ttf | |
application/x-web-app-manifest+json | |
application/xhtml+xml | |
application/xml | |
font/opentype | |
image/svg+xml | |
image/x-icon | |
text/css | |
#text/html -- text/html is gzipped by default by nginx | |
text/plain | |
text/xml; | |
gzip_buffers 16 8k; | |
gzip_disable "MSIE [1-6]\.(?!.*SV1)"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment