2024-08-07 18:10:38 -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;
}
}
}