2023-05-26 10:58:21 +01:00

26 lines
444 B
Nginx Configuration File

worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
sendfile on;
keepalive_timeout 65;
server {
listen 8080;
server_name localhost;
default_type 'text/html';
charset utf-8;
location / {
root /dashboard;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
}
}