addon-home-panel/home-panel/rootfs/etc/nginx/nginx.conf
Timmo cb8beca7a6
Rewrite nginx config and fix header comments (#3)
* 🔨 📝 rewrite nginx and fix header comments

* 👕 fix linter warning
2018-12-16 15:00:07 +00:00

22 lines
355 B
Nginx Configuration File

worker_processes 1;
pid /var/run/nginx.pid;
error_log /dev/stdout info;
daemon off;
events {
worker_connections 1024;
}
http {
server {
listen 8234 default_server;
server_name home-panel;
access_log /dev/stdout combined;
client_max_body_size 4G;
keepalive_timeout 5;
root /opt/panel;
}
}