Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
development:nginx [2020/02/28 17:25] kalenpw created |
— (current) | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Nginx ====== | ||
| - | ---- | ||
| - | ===== Reverse Proxy ===== | ||
| - | Useful for services that run on abnormal ports, but you want to have clean urls to access them | ||
| - | |||
| - | <file nginx reverse_proxy> | ||
| - | server { | ||
| - | server_name media.kalenpw.com; | ||
| - | location / { | ||
| - | proxy_pass http:// | ||
| - | } | ||
| - | } | ||
| - | </ | ||