olomana/misc/homepage/nginx/nginx.conf
2025-02-11 14:30:38 -08:00

15 lines
234 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
server {
listen 81;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
}
}