git-webhooks/nginx.conf
2024-08-01 18:19:05 +10:00

8 lines
159 B
Nginx Configuration File

server {
server_name example.com;
location / {
include proxy_params;
proxy_pass http://localhost:4040;
proxy_read_timeout 90;
}
}