Merge branch 'patch-1' into 'master'

Fixing ports in nginx config

See merge request litecord/litecord!53
This commit is contained in:
Luna 2020-01-29 09:43:54 +00:00
commit ba612ed185
1 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ server {
server_name example.tld; server_name example.tld;
location / { location / {
proxy_pass http://localhost:5000; proxy_pass http://localhost:8000;
} }
# if you're hosting a custom index page while keeping # if you're hosting a custom index page while keeping
@ -15,15 +15,15 @@ server {
# it too. # it too.
# location /api { # location /api {
# proxy_pass http://localhost:5000; # proxy_pass http://localhost:8000;
# } # }
# #
# location /.well-known { # location /.well-known {
# proxy_pass http://localhost:5000; # proxy_pass http://localhost:8000;
# } # }
# #
# location /nodeinfo { # location /nodeinfo {
# proxy_pass http://localhost:5000; # proxy_pass http://localhost:8000;
# } # }
# if you don't want to keep the gateway # if you don't want to keep the gateway