olomana/homepage/nginx/nginx.conf
2024-05-17 23:45:51 -07: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;
}
}
}