mirror of
https://github.com/c0mmando/hackliberty-conf.git
synced 2025-01-03 20:00:51 -05:00
14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name blog.*;
|
|
|
|
include /config/nginx/ssl.conf;
|
|
include /config/nginx/gzip.conf;
|
|
|
|
location / {
|
|
root /config/www/blog.hackliberty.org;
|
|
}
|
|
}
|