1
0
Fork 0
fursona/nginx.conf
Ava Gaiety W 6bdb3674df self contained docker and nginx
to self host on my homelab
2024-03-04 04:33:05 +00:00

22 lines
263 B
Nginx Configuration File

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