Am reușit să instalez SSL prin certbot în containerul meu Nginx Docker,
dar după instalare, tot traficul a fost direcționat prin HTTPS
refuză să se conecteze.
curl https://www.example.com
sau curl https://the_ip_of_server
curl: (7) Nu s-a putut conecta la portul example.com 443 după 9822 ms: Conexiune refuzată
~Portul 443 este deschis pe server (AWS Lisghtsail)
curl http://www.example.com
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx/1.21.6</center>
</body>
</html>
dar cand curl http://the_ip_of_server
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.21.6</center>
</body>
</html>
aici este nginx.conf
#Limita concurență
limit_conn_zone $binary_remote_addr zone=per_ip:10m;
Server {
nume_server example.com www.example.com;
Locație / {
proxy_pass http://flask:8080/;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Gazdă $gazdă;
proxy_redirect dezactivat;
proxy_intercept_errors activat;
limit_conn per_ip 12;
}
error_page 404 /notfound.html;
locație /notfound.html {
rădăcină /var/www/html;
intern;
}
error_page 500 502 503 504 /maintenance.html;
locație /maintenance.html {
rădăcină /var/www/html;
intern;
}
asculta 443 ssl; # gestionat de Certbot
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem; # gestionat de Certbot
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem; # gestionat de Certbot
includ /etc/letsencrypt/options-ssl-nginx.conf; # gestionat de Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # gestionat de Certbot
}
Server {
dacă ($gazdă = www.example.com) {
returnează 301 https://$host$request_uri;
} # gestionat de Certbot
dacă ($gazdă = exemplu.com) {
returnează 301 https://$host$request_uri;
} # gestionat de Certbot
asculta 80 default_server;
nume_server example.com www.example.com;
întoarce 404; # gestionat de Certbot
}
docker-compose.yml
versiunea: „3.7”
Servicii:
balon:
build: ./Flask App
container_name: balon
reporniți: întotdeauna
mediu inconjurator:
- APP_NAME=Env
expune:
- 8080
nginx:
build: ./Nginx
container_name: nginx
reporniți: întotdeauna
porturi:
- „80:80”