• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Is this possible on Apache.....

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    Is this possible on Apache.....

    I have a webserver running apache, using Virtual Hosts I have multiple websites/multiple domains running under
    Code:
    /var/www/<domainname>/html/....
    /var/www/<domainname2>/html/....
    /var/www/<domainname3>/html/....
    One of the websites has an admin function under the folder /stuff
    Code:
    /var/www/<domainname>/html/stuff
    so if I go to www.domain.com/stuff it appears.

    I want to hive of stuff from a folder on one domain, to a subdomain stuff.domain.com, if I create another entry in virtual hosts file but point the directory to
    Code:
    /var/www/<domainname>/html/stuff
    would that work?

    Something like this?

    Code:
    <VirtualHost *:80>
        ServerAdmin [email protected]
        ServerName domain.com
        ServerAlias www.domain.com
        DocumentRoot /var/www/domain.com/html/
        ErrorLog ${APACHE_LOG_DIR}/domain.com-error.log
        CustomLog ${APACHE_LOG_DIR}/domain.com-access.log combined
    </VirtualHost>
    
    <VirtualHost *:80>
        ServerAdmin [email protected]
        ServerName sub.domain.com
        ServerAlias www.sub.domain.com
        DocumentRoot /var/www/domain.com/html/stuff
        ErrorLog ${APACHE_LOG_DIR}/sub.domain.com-error.log
        CustomLog ${APACHE_LOG_DIR}/sub.domain.com-access.log combined
    </VirtualHost>
    Originally posted by Stevie Wonder Boy
    I can't see any way to do it can you please advise?

    I want my account deleted and all of my information removed, I want to invoke my right to be forgotten.

    #2
    Just tried it as you have it in those VirtualHost configs; works for me

    Comment


      #3
      Originally posted by NickFitz View Post
      Just tried it as you have it in those VirtualHost configs; works for me
      You're right it does work, it does however screw up the css and relative paths etc so not worth doing
      Originally posted by Stevie Wonder Boy
      I can't see any way to do it can you please advise?

      I want my account deleted and all of my information removed, I want to invoke my right to be forgotten.

      Comment

      Working...
      X