lehnert.dev/nginx.conf
2025-04-14 14:16:06 +02:00

21 lines
296 B
Nginx Configuration File

worker_processes auto;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
sendfile on;
server {
listen 3000;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
error_page 404 /404.html;
}
}