modified: serv_nginx/nginx/nginx-http.conf

add https on 443 port stub site
This commit is contained in:
valitovgaziz
2025-08-08 22:00:17 +05:00
parent 97dd518bac
commit 3158158e72
+10
View File
@@ -11,3 +11,13 @@ server {
root /var/www/certbot; root /var/www/certbot;
} }
} }
server {
listen 443;
server_name yalarba.ru easysite102 valitovgaziz.ru бегущийбашкир.рф;
location / {
root /usr/share/nginx/stub/html;
index index.html;
}
}