proxy_for_me / nginx.conf
antonovmaxim's picture
Update nginx.conf
fb68934
raw
history blame contribute delete
No virus
442 Bytes
server {
listen 7860;
location / {
proxy_ssl_server_name on;
proxy_pass https://gpt.darkcoder15.tk/;
}
# Установите следующие два блока, если у вас есть SSL для localhost
#ssl on;
#ssl_certificate /etc/nginx/ssl/localhost.crt; # путь к вашему cert
#ssl_certificate_key /etc/nginx/ssl/localhost.key; # путь к вашему ключу
}