Automation and setup for sites I own.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- # Redirect all http traffic
- server {
- listen 80 default_server;
- listen [::]:80 default_server;
-
- location / {
- return 301 https://$host$request_uri;
- }
-
- location ^~ /.well-known/acme-challenge {
- alias /var/www/.well-known/acme-challenge;
- }
- }
|