2025-04-01 23:04:18 +03:00

27 lines
432 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name _;
root /usr/share/nginx_cool/dist;
index index.html;
location / {
try_files $uri /index.html;
}
location ~* \.js$ {
add_header Content-Type application/javascript;
}
}
}