1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2026-02-04 19:03:31 +00:00
Artemis/docfx/nginx.conf
2025-12-29 11:42:32 +01:00

30 lines
461 B
Nginx Configuration File

pid /tmp/nginx.pid;
worker_processes auto;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server_tokens off;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
server {
listen 8080;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}
}