Spaces:
Runtime error
Runtime error
antonovmaxim
commited on
Commit
·
a91fc64
1
Parent(s):
25d325e
Update nginx.conf
Browse files- nginx.conf +8 -1
nginx.conf
CHANGED
@@ -1,6 +1,13 @@
|
|
1 |
server {
|
2 |
listen 7860;
|
|
|
3 |
location / {
|
4 |
-
|
|
|
5 |
}
|
|
|
|
|
|
|
|
|
|
|
6 |
}
|
|
|
1 |
server {
|
2 |
listen 7860;
|
3 |
+
|
4 |
location / {
|
5 |
+
proxy_ssl_server_name on;
|
6 |
+
proxy_pass https://example.com;
|
7 |
}
|
8 |
+
|
9 |
+
# Установите следующие два блока, если у вас есть SSL для localhost
|
10 |
+
#ssl on;
|
11 |
+
#ssl_certificate /etc/nginx/ssl/localhost.crt; # путь к вашему cert
|
12 |
+
#ssl_certificate_key /etc/nginx/ssl/localhost.key; # путь к вашему ключу
|
13 |
}
|