mentorenwahl/frontend/nginx.conf

25 lines
309 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
server_tokens off;
more_clear_headers Server;
server {
listen 80;
root /var/www/html;
location / {
try_files $uri /index.html;
}
}
}