Skip to content

Commit c2664a2

Browse files
committed
moved to port 8080 to make it easier to get a certificate
1 parent 2539157 commit c2664a2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/websockproxy/nginx.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ http {
3434
listen 443 http2 ssl;
3535
listen [::]:443 http2 ssl;
3636

37-
server_name proxy.azabab.com;
37+
server_name proxy.supabrowser.com;
3838
ssl_certificate /root/fullchain.pem;
3939
ssl_certificate_key /root/privkey.pem;
4040
ssl_prefer_server_ciphers on;
@@ -45,7 +45,7 @@ http {
4545
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
4646
proxy_set_header X-Forwarded-Proto $scheme;
4747

48-
proxy_pass http://localhost:80;
48+
proxy_pass http://localhost:8080;
4949
proxy_read_timeout 90;
5050

5151
proxy_http_version 1.1;

packages/websockproxy/switchedrelay.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def on_close(self):
183183

184184
args = sys.argv
185185
tornado.options.parse_command_line(args)
186-
application.listen(80)
186+
application.listen(8080)
187187
loop = tornado.ioloop.IOLoop.instance()
188188
try:
189189
loop.start()

0 commit comments

Comments
 (0)