89 lines
2.0 KiB
Nginx Configuration File
89 lines
2.0 KiB
Nginx Configuration File
|
worker_processes auto;
|
||
|
pid /run/nginx/nginx.pid;
|
||
|
error_log stderr info;
|
||
|
daemon off;
|
||
|
master_process off;
|
||
|
|
||
|
include /etc/nginx/modules-enabled/*.conf;
|
||
|
|
||
|
events {
|
||
|
worker_connections 768;
|
||
|
# multi_accept on;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
|
||
|
##
|
||
|
# Basic Settings
|
||
|
##
|
||
|
|
||
|
sendfile on;
|
||
|
tcp_nopush on;
|
||
|
tcp_nodelay on;
|
||
|
keepalive_timeout 65;
|
||
|
types_hash_max_size 2048;
|
||
|
server_tokens off;
|
||
|
|
||
|
server_names_hash_bucket_size 128;
|
||
|
|
||
|
include /etc/nginx/mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
|
||
|
##
|
||
|
# SSL Settings
|
||
|
##
|
||
|
|
||
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
|
||
|
ssl_prefer_server_ciphers on;
|
||
|
|
||
|
##
|
||
|
# Logging Settings
|
||
|
##
|
||
|
|
||
|
access_log /dev/stdout;
|
||
|
|
||
|
##
|
||
|
# Gzip Settings
|
||
|
##
|
||
|
|
||
|
gzip on;
|
||
|
gzip_disable "msie6";
|
||
|
|
||
|
##
|
||
|
# Virtual Host Configs
|
||
|
##
|
||
|
|
||
|
include /etc/nginx/conf.d/*.conf;
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
listen 443 ssl;
|
||
|
server_name default_server;
|
||
|
|
||
|
include snippets/snakeoil.conf;
|
||
|
|
||
|
root /tiki;
|
||
|
index tiki-index.php index.php index.html;
|
||
|
|
||
|
location / {
|
||
|
# Use route.php to have SEO-friendly URLs
|
||
|
try_files $uri $uri/ /route.php?q=$uri&$args;
|
||
|
}
|
||
|
|
||
|
location ~ \.(bak|exe|inc|ini|lib|pl|py|sh|sql|tpl)$ {
|
||
|
deny all;
|
||
|
}
|
||
|
|
||
|
location ~ \.php$ {
|
||
|
include fastcgi_params;
|
||
|
fastcgi_read_timeout 300;
|
||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
# Avoid issues with HTTP header injections
|
||
|
fastcgi_param HTTP_PROXY "";
|
||
|
fastcgi_pass tikiwiki:9000;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|