1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-07-02 16:00:12 +02:00
build/layer/router-base/nginx.conf
David Oberhollenzer 30cad432bf Add an Nginx server landing page to the router product
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-10-07 02:16:28 +02:00

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;
}
}
}