mirror of
https://github.com/KevinMidboe/k9e.no.git
synced 2025-10-29 17:50:14 +00:00
22 lines
274 B
Nginx Configuration File
22 lines
274 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
autoindex off;
|
|
|
|
server_name _;
|
|
server_tokens off;
|
|
|
|
root /app/;
|
|
gzip_static on;
|
|
}
|
|
}
|