Search code examples
phpdnsopenshiftpublic-htmlpublic-folders

OPENSHIFT - How do I change the document root?


Hi here I was openshift novice users, where before I used the cpanel for my hosting, and I want to switch to openshift, that I ask is how do I change the document root?, if previously on cpanel is Home/public_html/thelifestylelist.com to Home/public_html/thelifestylelist.com/public on openshift? (my index php is on public directory) Hopefully the picture below can clarify my question. Thank you.

enter image description here Sorry i used external link for my image, need at least 15 reputation to attach image. .


Solution

  • This is the order OpenShift search for root directory

    IF php/ dir exists THEN DocumentRoot=php/  
    ELSE IF public/ dir exists THEN DocumentRoot=public/  
    ELSE IF public_html/ dir exists THEN DocumentRoot=public_html/  
    ELSE IF web/ dir exists THEN DocumentRoot=web/  
    ELSE IF www/ dir exists THEN DocumentRoot=www/  
    ELSE DocumentRoot=/ 
    

    So you just add the any of this folders.