Files
examples-for-kids/nginx.conf
Николай Вигдоров 2d340d9384 add nginx
2025-03-10 00:07:25 +03:00

18 lines
281 B
Nginx Configuration File

events {}
http {
server {
listen 80;
location /stub_status {
stub_status on;
allow 127.0.0.1;
deny all;
}
location / {
root /usr/share/nginx/html;
index index.html;
}
}
}