PhoGro
Member
Just want to make sure I have this right - when you say that all the xf paths must be related to my install. if I have my install at root/community/
Do I change /xf/ with /community/ everywhere it occurs?
	
	
	
		
				
			Do I change /xf/ with /community/ everywhere it occurs?
		Code:
	
	location /xf/ {
    try_files $uri $uri/ /xf/index.php?$uri&$args;
    index index.php index.html;
}
location /xf/internal_data/ {
    internal;
}
location /xf/library/ {
       internal;
}
location ~ \.php$ {
    try_files $uri =404;
    fastcgi_pass    127.0.0.1:9000;
    fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include         fastcgi_params;
} 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		