Nginx SNI and Letsencrypt on FreeBSD; Wrong certificate?
NuLL3rr0r
nginx-forum at forum.nginx.org
Sun Sep 4 10:50:30 UTC 2016
Tahnk you Maxim for the answer and sorry for my tardy response. I'm sure
that's not the case since I have a server block with redirect to www. Here
is the actual config:
server {
server_tokens off;
listen 80;
listen [::]:80;
server_name learnmyway.net;
location / {
return 301 https://www.$server_name$request_uri; # enforce https /
www
}
# Error Pages
include /path/to/snippets/error;
# Anti-DDoS
include /path/to/snippets/anti-ddos;
# letsencrypt acme challenges
include /path/to/snippets/letsencrypt-acme-challenge;
}
server {
server_tokens off;
listen 80;
listen [::]:80;
server_name *.learnmyway.net;
location / {
return 301 https://$host$request_uri; # enforce https
}
# Error Pages
include /path/to/snippets/error;
# Anti-DDoS
include /path/to/snippets/anti-ddos;
# letsencrypt acme challenges
include /path/to/snippets/letsencrypt-acme-challenge;
}
server {
server_tokens off;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name www.learnmyway.net;
# Hardened SSL
include /path/to/snippets/hardened-ssl;
ssl_certificate /path/to/certs/learnmyway.net.pem;
ssl_certificate_key /path/to/keys/learnmyway.net.pem;
ssl_trusted_certificate /path/to/certs/learnmyway.net.pem;
#error_log /path/to/learnmyway.net/log/www_error_log;
#access_log /path/to/learnmyway.net/log/www_access_log;
root /path/to/learnmyway.net/www/;
index index.html;
# Error Pages
include /path/to/snippets/error;
# Anti-DDoS
include /path/to/snippets/anti-ddos;
# letsencrypt acme challenges
include /path/to/snippets/letsencrypt-acme-challenge;
# Compression
include /path/to/snippets/compression;
# Static Resource Caching
include /path/to/snippets/static-resource-caching;
}
Posted at Nginx Forum: https://forum.nginx.org/read.php?2,269263,269380#msg-269380
More information about the nginx
mailing list