1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-10-02 15:00:02 +00:00

Add sample config files

This commit is contained in:
King_DuckZ 2017-04-11 08:45:34 +01:00
commit ab9b4ec8c3
3 changed files with 84 additions and 0 deletions

25
config/nginx/nginx.conf Normal file
View file

@ -0,0 +1,25 @@
#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/*;
}