32 lines
647 B
Nginx Configuration File
32 lines
647 B
Nginx Configuration File
# vim: ft=nginx
|
|
|
|
include root-base.conf;
|
|
|
|
http {
|
|
include http-base.conf;
|
|
include hosted-http-base.conf;
|
|
include rate-limiting.conf;
|
|
|
|
server {
|
|
include server-base.conf;
|
|
|
|
listen 443 default;
|
|
|
|
ssl on;
|
|
|
|
# This header must be set only for HTTPS
|
|
add_header Strict-Transport-Security "max-age=63072000; preload";
|
|
}
|
|
|
|
server {
|
|
include proxy-protocol.conf;
|
|
include server-base.conf;
|
|
|
|
listen 8443 default proxy_protocol;
|
|
|
|
ssl on;
|
|
|
|
# This header must be set only for HTTPS
|
|
add_header Strict-Transport-Security "max-age=63072000; preload";
|
|
}
|
|
}
|