mirror of
https://github.com/cmosher01/Epple-II.git
synced 2025-02-08 22:30:50 +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/*;
|
||
|
}
|