mirror of
https://github.com/cmosher01/Epple-II.git
synced 2024-12-29 00:31:40 +00:00
28 lines
403 B
Nginx Configuration File
28 lines
403 B
Nginx Configuration File
user root;
|
|
pid /run/nginx.pid;
|
|
|
|
events {
|
|
}
|
|
|
|
http {
|
|
port_in_redirect on;
|
|
disable_symlinks off;
|
|
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
error_log stderr debug;
|
|
access_log stderr;
|
|
|
|
gzip on;
|
|
gzip_disable "msie6";
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
|
include /etc/nginx/sites-enabled/*;
|
|
}
|