sandbox-docs-public/nginx.conf

22 lines
312 B
Nginx Configuration File
Raw Normal View History

2023-05-31 06:16:27 +00:00
events {
worker_connections 1024;
}
http {
include mime.types;
sendfile on;
server {
listen 8080;
listen [::]:8080;
resolver 127.0.0.11;
autoindex off;
server_name _;
server_tokens off;
root /app/static;
gzip_static on;
}
}