mirror of
https://github.com/pygos/build.git
synced 2024-11-04 19:27:09 +01:00
26 lines
517 B
Nginx Configuration File
26 lines
517 B
Nginx Configuration File
|
worker_processes 1;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
error_log syslog:server=unix:/dev/log,nohostname,facility=daemon,severity=error,tag=nginx;
|
||
|
|
||
|
http {
|
||
|
include mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
sendfile on;
|
||
|
keepalive_timeout 65;
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name _;
|
||
|
access_log syslog:server=unix:/dev/log,nohostname,facility=daemon,severity=info,tag=nginx;
|
||
|
|
||
|
location / {
|
||
|
root /srv/www/;
|
||
|
index index.html;
|
||
|
}
|
||
|
}
|
||
|
}
|