Files
pi-ku/frontend/nginx.conf
T
2026-04-22 19:14:21 +05:30

24 lines
367 B
Nginx Configuration File

pid /tmp/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
access_log /tmp/access.log;
error_log /tmp/error.log;
server {
listen 8080;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}
}