Group:  Member   
	Post Group: Newbie 
	Posts: 3 	
	Status:    
	
	 | 
	
	Hi, I need to configure some ports for an app
 location / {
 location /home/ {
 
 proxy_pass http://127.0.0.1:8080;
 proxy_set_header Host $http_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 $scheme;
 }
 I noticed that in the WebuzoVH.con file, there is an include file that contains directives such as location /
 include /usr/local/apps/nginx/etc/conf.d/common;
 When I comment it out, my app runs without issue, but otherwise, it won't open.
 Is there a way to prevent that line from being included or to make an exception when the file WebuzoVH.con is regenerated?
 Thanks
	
	 |