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:
parent
aef2210f6d
commit
ab9b4ec8c3
3 changed files with 84 additions and 0 deletions
25
config/nginx/nginx.conf
Normal file
25
config/nginx/nginx.conf
Normal 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/*;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue