This repository has been archived on 2024-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
website/nginx.conf

35 lines
500 B
Nginx Configuration File
Raw Permalink Normal View History

2024-05-24 11:43:23 +00:00
user root;
worker_processes auto;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
charset UTF-8;
#gzip on;
server {
listen 0.0.0.0:80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
}