25 lines
605 B
Nginx Configuration File
25 lines
605 B
Nginx Configuration File
server {
|
|
listen 8080;
|
|
server_name _;
|
|
|
|
# Basic configuration
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# Enable compression
|
|
gzip on;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
|
|
|
# Handle static file serving
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
add_header Cache-Control "no-cache";
|
|
}
|
|
|
|
# Health check endpoint
|
|
location = /health {
|
|
access_log off;
|
|
add_header Content-Type text/plain;
|
|
return 200 'OK';
|
|
}
|
|
} |