forked from infra/ansible
28 lines
507 B
Plaintext
28 lines
507 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
|
||
|
server_name eh2x.binary-kitchen.de;
|
||
|
|
||
|
location /.well-known/acme-challenge {
|
||
|
default_type "text/plain";
|
||
|
alias /var/www/acme-challenge;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
return 301 https://eh2x.binary-kitchen.de$request_uri;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 443 ssl http2;
|
||
|
listen [::]:443 ssl http2;
|
||
|
|
||
|
server_name eh2x.binary-kitchen.de;
|
||
|
|
||
|
ssl_certificate_key /etc/nginx/ssl/eh2x.binary-kitchen.de.key;
|
||
|
ssl_certificate /etc/nginx/ssl/eh2x.binary-kitchen.de.crt;
|
||
|
|
||
|
root /var/www/eh2x;
|
||
|
}
|