parent
b7fbfc8e32
commit
046b3dfbb2
1 changed files with 11 additions and 9 deletions
|
@ -11,14 +11,16 @@ Blog and be free!
|
|||
**Reverse Proxy for NGINX**
|
||||
```
|
||||
server {
|
||||
listen 80;
|
||||
server_name yourcoolassdomain.org
|
||||
|
||||
location / {
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_pass http://127.0.0.1:2314;
|
||||
}
|
||||
listen 80;
|
||||
server_name yourcoolassdomain.com;
|
||||
location / {
|
||||
proxy_pass https://127.0.0.1:2314;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection 'upgrade';
|
||||
proxy_set_header Host $host;
|
||||
proxy_cache_bypass $http_upgrade;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue