nuke/docs/manifest/cfg/nginx/nginx.conf
Xe Iaso e02f017153
chore(docs/manifest): remove fastcgi from the nginx config
Signed-off-by: Xe Iaso <me@xeiaso.net>
2025-07-09 17:01:42 -04:00

29 lines
No EOL
423 B
Nginx Configuration File

user nginx;
worker_processes 2;
error_log /dev/stdout warn;
pid /nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
access_log /dev/stdout;
sendfile on;
keepalive_timeout 65;
server {
listen 80 default_server;
server_name _;
root /www;
index index.html index.php;
location / {
try_files $uri $uri/ =404;
}
}
}