36 lines
760 B
Cheetah
36 lines
760 B
Cheetah
pid tmp/{{"{{"}}GIN_ENV{{"}}"}}-nginx.pid;
|
|
|
|
# This number should be at maxium the number of CPU on the server
|
|
worker_processes 4;
|
|
#daemon off;
|
|
|
|
events {
|
|
# Number of connections per worker
|
|
worker_connections 4096;
|
|
}
|
|
|
|
http {
|
|
# use sendfile
|
|
sendfile on;
|
|
|
|
# Gin initialization
|
|
{{"{{"}}GIN_INIT{{"}}"}}
|
|
|
|
server {
|
|
# List port
|
|
listen {{"{{"}}GIN_PORT{{"}}"}};
|
|
|
|
keepalive_timeout 70;
|
|
|
|
# Access log with buffer, or disable it completetely if unneeded
|
|
access_log logs/{{"{{"}}GIN_ENV{{"}}"}}-access.log combined buffer=16k;
|
|
# access_log off;
|
|
|
|
# Error log
|
|
error_log logs/{{"{{"}}GIN_ENV{{"}}"}}-error.log debug;
|
|
|
|
# Gin runtime
|
|
{{"{{"}}GIN_RUNTIME{{"}}"}}
|
|
}
|
|
}
|