mirror of
https://codeberg.org/angestoepselt/pxe-stack.git
synced 2025-05-24 15:16:16 +00:00
19 lines
No EOL
276 B
Nginx Configuration File
19 lines
No EOL
276 B
Nginx Configuration File
events {}
|
|
http {
|
|
include mime.types;
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
resolver 127.0.0.11;
|
|
autoindex on;
|
|
|
|
server_name _;
|
|
server_tokens off;
|
|
|
|
root /app/static;
|
|
gzip_static on;
|
|
}
|
|
} |