14 lines
163 B
Plaintext
14 lines
163 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
http2 on;
|
|
root /srv/http;
|
|
gzip_static on;
|
|
gzip_vary on;
|
|
gzip off;
|
|
|
|
location / {
|
|
}
|
|
}
|
|
|