Spaces:
Runtime error
Runtime error
File size: 434 Bytes
b41cfb6 b55f3e7 a91fc64 f1cbde9 a91fc64 b41cfb6 a91fc64 c9a5710 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
server {
listen 7860;
location / {
proxy_ssl_server_name on;
proxy_pass https://example.com;
}
# Установите следующие два блока, если у вас есть SSL для localhost
#ssl on;
#ssl_certificate /etc/nginx/ssl/localhost.crt; # путь к вашему cert
#ssl_certificate_key /etc/nginx/ssl/localhost.key; # путь к вашему ключу
}
|