43 lines
1.4 KiB
Nginx Configuration File
43 lines
1.4 KiB
Nginx Configuration File
# vim: ft=nginx
|
|
|
|
include root-base.conf;
|
|
|
|
http {
|
|
include http-base.conf;
|
|
include hosted-http-base.conf;
|
|
include rate-limiting.conf;
|
|
|
|
ssl_certificate ./stack/ssl.cert;
|
|
ssl_certificate_key ./stack/ssl.key;
|
|
ssl_ciphers "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
ssl_session_cache shared:SSL:10m;
|
|
ssl_session_timeout 5m;
|
|
ssl_stapling on;
|
|
ssl_stapling_verify on;
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
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";
|
|
}
|
|
}
|