Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ At this point, you should be able to access code-server via
listen [::]:80;
server_name mydomain.com;

location / {
location ^~ / {
proxy_pass http://localhost:8080/;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
Expand Down Expand Up @@ -575,7 +575,7 @@ At this point, you should be able to access code-server via
listen [::]:80;
server_name mydomain.com;

location / {
location ^~ / {
proxy_pass http://localhost:8080/;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
Expand Down