2018-01-14 05:31:43 -05:00
|
|
|
worker_processes auto;
|
|
|
|
pid /tmp/nginx.pid;
|
|
|
|
daemon off;
|
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections 1024;
|
|
|
|
use epoll;
|
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
|
|
|
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
default_type application/octet-stream;
|
|
|
|
|
|
|
|
access_log off;
|
|
|
|
error_log /tmp/ngx_error.log error;
|
|
|
|
|
|
|
|
sendfile on;
|
|
|
|
keepalive_timeout 15;
|
|
|
|
keepalive_disable msie6;
|
|
|
|
keepalive_requests 100;
|
|
|
|
tcp_nopush on;
|
|
|
|
tcp_nodelay on;
|
|
|
|
server_tokens off;
|
|
|
|
|
|
|
|
fastcgi_temp_path /tmp/fastcgi 1 2;
|
|
|
|
client_body_temp_path /tmp/client_body 1 2;
|
|
|
|
proxy_temp_path /tmp/proxy 1 2;
|
|
|
|
uwsgi_temp_path /tmp/uwsgi 1 2;
|
|
|
|
scgi_temp_path /tmp/scgi 1 2;
|
|
|
|
|
|
|
|
gzip on;
|
|
|
|
gzip_comp_level 5;
|
|
|
|
gzip_min_length 512;
|
|
|
|
gzip_buffers 4 8k;
|
|
|
|
gzip_proxied any;
|
|
|
|
gzip_vary on;
|
|
|
|
gzip_disable "msie6";
|
|
|
|
gzip_types
|
|
|
|
text/css
|
|
|
|
text/javascript
|
|
|
|
text/xml
|
|
|
|
text/plain
|
|
|
|
text/x-component
|
|
|
|
application/javascript
|
|
|
|
application/x-javascript
|
|
|
|
application/json
|
|
|
|
application/xml
|
|
|
|
application/rss+xml
|
|
|
|
application/vnd.ms-fontobject
|
|
|
|
font/truetype
|
|
|
|
font/opentype
|
|
|
|
image/svg+xml;
|
|
|
|
|
|
|
|
server {
|
2018-11-29 22:00:50 -05:00
|
|
|
listen 8080;
|
|
|
|
charset utf-8;
|
2018-01-14 05:31:43 -05:00
|
|
|
|
2018-11-29 22:00:50 -05:00
|
|
|
root /flarum/app/public;
|
2018-01-14 05:31:43 -05:00
|
|
|
index index.php;
|
|
|
|
|
|
|
|
client_max_body_size <UPLOAD_MAX_SIZE>;
|
|
|
|
fastcgi_buffers 64 4K;
|
|
|
|
|
2018-11-29 22:00:50 -05:00
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ /index.php?$query_string;
|
2018-01-14 05:31:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
# Assets cache control
|
|
|
|
# --------------------------------------
|
|
|
|
location ~* \.(?:html|xml|json)$ {
|
|
|
|
expires -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~* \.(?:css|js)$ {
|
|
|
|
expires 7d;
|
|
|
|
add_header Pragma public;
|
2018-06-22 03:16:19 -04:00
|
|
|
add_header Cache-Control "public";
|
2018-01-14 05:31:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
location ~* \.(?:gif|jpe?g|png|ico|otf|eot|svg|ttf|woff|woff2)$ {
|
|
|
|
expires 30d;
|
|
|
|
add_header Pragma public;
|
2018-06-22 03:16:19 -04:00
|
|
|
add_header Cache-Control "public";
|
2018-01-14 05:31:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
# PHP Backend
|
|
|
|
# --------------------------------------
|
|
|
|
location ~* \.php$ {
|
|
|
|
try_files $uri =404;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
fastcgi_pass unix:/tmp/php-fpm.sock;
|
|
|
|
fastcgi_intercept_errors on;
|
|
|
|
fastcgi_request_buffering off;
|
2018-10-29 16:58:21 -04:00
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param HTTP_PROXY "";
|
2018-01-14 05:31:43 -05:00
|
|
|
fastcgi_param REMOTE_ADDR $http_x_real_ip;
|
|
|
|
}
|
|
|
|
|
2018-11-05 12:53:30 -05:00
|
|
|
include /etc/nginx/conf.d/custom-vhost-flarum.conf;
|
2018-01-14 05:31:43 -05:00
|
|
|
}
|
|
|
|
}
|