mentorenwahl/frontend/nginx.conf

25 lines
309 B
Nginx Configuration File
Raw Normal View History

2022-11-04 20:23:36 +00:00
events {
worker_connections 1024;
}
http {
2023-02-25 13:38:14 +00:00
include mime.types;
2022-11-23 19:17:14 +00:00
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
2022-11-21 18:48:53 +00:00
server_tokens off;
more_clear_headers Server;
2022-11-04 20:23:36 +00:00
server {
listen 80;
root /var/www/html;
location / {
try_files $uri /index.html;
}
}
}