Following Joshua's excellent guide, I setup my FreeNAS Mini with a clean install of 11.1, and a brand new jail configuration for SABnzbd, Couchpotato, Sickrage, and Transmission. Getting to the part of configuring nginx, and the separate reverse proxies for each service, I followed the tutorial and added the following to my /usr/local/etc/nginx/nginx.conf file;
Afterwards, with all parts working correctly within the jail, when I try to visit the separate webguis, the following happens;
[jail_ip]/sabnzbd takes me to the SABnzbd webgui
[jail_ip]/sickrage/home/ takes me to the Sickrage webgui
[jail_ip]/transmission/web/ takes me to the Transmission webgui
but
[jail_ip]/couchpotato converts to [jail_ip]/#couchpotato/ and takes me to the "Welcome to nginx!" page
In order for me to get to the Couchpotato webgui, I need to use [jail_ip]:5050
Am I doing something wrong with this configuration?
Thanks..
	
		
			
		
		
	
			
			Code:
		location ^~ /couchpotato {
				proxy_pass http://127.0.0.1:5050;
		}
		location ^~ /sabnzbd {
				proxy_pass http://127.0.0.1:8080;
		}
		location ^~ /sickrage {
				proxy_pass http://127.0.0.1:8081;
		}
		location ^~ /transmission {
				proxy_pass http://127.0.0.1:9091;
		}Afterwards, with all parts working correctly within the jail, when I try to visit the separate webguis, the following happens;
[jail_ip]/sabnzbd takes me to the SABnzbd webgui
[jail_ip]/sickrage/home/ takes me to the Sickrage webgui
[jail_ip]/transmission/web/ takes me to the Transmission webgui
but
[jail_ip]/couchpotato converts to [jail_ip]/#couchpotato/ and takes me to the "Welcome to nginx!" page
In order for me to get to the Couchpotato webgui, I need to use [jail_ip]:5050
Am I doing something wrong with this configuration?
Thanks..