Files
Wordpress-Ansible/snake/nginx.conf

31 lines
601 B
Nginx Configuration File
Raw Normal View History

2025-12-08 09:45:23 +01:00
worker_processes 1;
events { worker_connections 1024; }
2025-12-08 07:50:32 +00:00
http {
include mime.types;
default_type application/octet-stream;
2025-12-08 09:45:23 +01:00
# Snake game server
2025-12-08 07:50:32 +00:00
server {
listen 80;
2025-12-08 09:45:23 +01:00
server_name _;
2025-12-08 07:50:32 +00:00
location / {
2025-12-08 09:45:23 +01:00
root /usr/share/nginx/html;
index index.html;
2025-12-08 07:50:32 +00:00
}
2025-12-08 09:45:23 +01:00
}
2025-12-08 07:50:32 +00:00
2025-12-08 09:45:23 +01:00
# Metrics for Prometheus
server {
listen 81;
server_name _;
2025-12-08 07:50:32 +00:00
2025-12-08 09:45:23 +01:00
location /nginx_status {
stub_status;
allow 0.0.0.0/0; # adjust for security; or restrict to your Prometheus server
2025-12-08 07:50:32 +00:00
deny all;
}
}
}