I need the server to start from a folder inside my site, not from the www folder. How to implement it?
- This can somehow be implemented using a virtual server. How exactly? - Vitali Skripka
|
1 answer
something like this
# Ensure that Apache listens on port 80 Listen 80 <VirtualHost *:80> DocumentRoot "/www/example1" ServerName www.example.com # Other directives here </VirtualHost> <VirtualHost *:80> DocumentRoot "/www/example2" ServerName www.example.org # Other directives here </VirtualHost> source https://httpd.apache.org/docs/current/vhosts/examples.html
|