artifacts/oci/rundeck/chart/files/nginx/nginx.conf
2023-02-20 10:47:32 +08:00

21 lines
533 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
server {
location /healthz {
return 204;
access_log off;
}
location / {
recursive_error_pages on;
client_max_body_size 50M; # upload archives (backup/restore)
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header User-Agent $http_user_agent;
proxy_pass http://localhost:4440;
}
}
}