Files
examples-for-kids/nginx.conf
Николай Вигдоров 18db85301b fix nginx
2025-03-10 01:28:24 +03:00

29 lines
596 B
Nginx Configuration File

events {}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 80;
location /stub_status {
stub_status on;
allow all;
}
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ $uri.html =404;
}
location /assets/ {
root /usr/share/nginx/html;
}
location ~* \.(js|css|ico|png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)$ {
root /usr/share/nginx/html;
}
}
}