Advertisement
zapcode

000-default.conf_codeanywhere

May 5th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. # With this config htaccess can use in directories for independient values.
  2. # OVERWRITE file in /etc/apache2/sites-available/000-default.conf
  3. # You home user "cabox" change for you username
  4. <VirtualHost *:80 *:3000>
  5. ServerAdmin webmaster@localhost
  6. DocumentRoot /home/cabox/workspace
  7. ErrorLog ${APACHE_LOG_DIR}/error.log
  8. CustomLog ${APACHE_LOG_DIR}/access.log combined
  9. <Directory /home/cabox/workspace>
  10. Options Indexes FollowSymLinks
  11. AllowOverride All
  12. Require all granted
  13. </Directory>
  14. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement