This is a text-only version of the following page on https://raymii.org: --- Title : NGINX: Proxy folders to different root Author : Remy van Elst Date : 04-04-2013 URL : https://raymii.org/s/tutorials/NGINX_proxy_folder_to_different_root.html Format : Markdown/HTML --- This tutorial shows you how to have NGINX use different folders as different upstream proxy's.
By default, if you have a `location` block which has a proxy pass, and the `location` block is a folder, for example `/wiki`, the folder is sent back to the proxied server: location /nagios/ { proxy_pass http://10.0.21.8:80/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; proxy_redirect off; } The above block will, when browsed, sent you to `http://10.0.21.8/nagios/`, because that is the nginx location. However, if you want it to go to `http://10.0.21.8/` you either have to rewrite or use the `/` location. The below example has the correct rewrite rule: location /nagios/ { rewrite ^/nagios(/.*)$ $1 break; proxy_pass http://10.0.21.8:80/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; proxy_redirect off; } As you can see, this line: rewrite ^/collectd(/.*)$ $1 break; fixes the above problem, and sends you to `http://10.0.21.8/` instead of `http://10.0.21.8/nagios`. [1]: https://www.digitalocean.com/?refcode=7435ae6b8212 --- License: All the text on this website is free as in freedom unless stated otherwise. This means you can use it in any way you want, you can copy it, change it the way you like and republish it, as long as you release the (modified) content under the same license to give others the same freedoms you've got and place my name and a link to this site with the article as source. This site uses Google Analytics for statistics and Google Adwords for advertisements. You are tracked and Google knows everything about you. Use an adblocker like ublock-origin if you don't want it. All the code on this website is licensed under the GNU GPL v3 license unless already licensed under a license which does not allows this form of licensing or if another license is stated on that page / in that software: This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see