Files
marktaguiad.dev/nginx.conf
mcbtaguiad ec77f4121f
Some checks failed
Build and Push Docker Image / build (push) Failing after 31s
test
2026-01-19 21:31:03 +08:00

23 lines
303 B
Nginx Configuration File
Executable File

events {
worker_connections 1024;
}
http {
include mime.types;
sendfile on;
server {
listen 80;
listen [::]:80;
resolver 127.0.0.11;
autoindex off;
server_name _;
server_tokens off;
root /app/;
gzip_static on;
}
}