1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2024-11-23 00:33:44 +00:00
kamokan/config/nginx/nginx.conf

26 lines
454 B
Nginx Configuration File
Raw Permalink Normal View History

2017-04-11 07:45:34 +00:00
#user html;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
server_names_hash_bucket_size 64;
error_log /var/log/nginx/error.log;
sendfile off;
keepalive_timeout 65;
#include /etc/nginx/default.conf;
include /etc/nginx/sites-enabled/*;
}