91 lines
2.5 KiB
Nginx Configuration File
91 lines
2.5 KiB
Nginx Configuration File
worker_processes 1;
|
|
error_log stderr warn;
|
|
pid /run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
# Define custom log format to include reponse times
|
|
log_format main_timed '$remote_addr - $remote_user [$time_local] "$request" '
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
'"$http_user_agent" "$http_x_forwarded_for" '
|
|
'$request_time $upstream_response_time $pipe $upstream_cache_status';
|
|
|
|
access_log /dev/stdout main_timed;
|
|
error_log /dev/stderr notice;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
server_tokens off;
|
|
|
|
# Write temporary files to /tmp so they can be created as a non-privileged user
|
|
client_body_temp_path /tmp/client_temp;
|
|
proxy_temp_path /tmp/proxy_temp_path;
|
|
fastcgi_temp_path /tmp/fastcgi_temp;
|
|
uwsgi_temp_path /tmp/uwsgi_temp;
|
|
scgi_temp_path /tmp/scgi_temp;
|
|
|
|
# Default server definition
|
|
server {
|
|
listen [::]:8080 default_server;
|
|
listen 8080 default_server;
|
|
server_name _;
|
|
|
|
sendfile off;
|
|
|
|
root /var/www/html/omeka-s;
|
|
index index.php index.html index.htm;
|
|
rewrite ^/(.*)/$ /$1 permanent;
|
|
|
|
location = /favicon.ico {
|
|
log_not_found off;
|
|
access_log off;
|
|
}
|
|
|
|
location = /robots.txt {
|
|
allow all;
|
|
log_not_found off;
|
|
access_log off;
|
|
}
|
|
|
|
location ~ \..*/.*\.php$ {
|
|
return 403;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri /index.php?$args;
|
|
}
|
|
|
|
# location /admin {
|
|
# try_files $uri /index.php?$args;
|
|
# }
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
#NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_intercept_errors on;
|
|
fastcgi_pass unix:/run/php-fpm.sock;
|
|
}
|
|
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
|
|
expires max;
|
|
log_not_found off;
|
|
}
|
|
}
|
|
gzip on;
|
|
gzip_proxied any;
|
|
gzip_types text/plain application/xml text/css text/js text/xml application/x-javascript text/javascript application/json application/xml+rss;
|
|
gzip_vary on;
|
|
gzip_disable "msie6";
|
|
|
|
# Include other server configs
|
|
include /etc/nginx/conf.d/*.conf;
|
|
}
|