apache.EXAMPLE.conf 760 B

1234567891011121314151617181920212223242526
  1. <VirtualHost *:80>
  2. ServerName stk-addons.localhost
  3. DocumentRoot /var/www/stk-addons/
  4. <Directory /var/www/stk-addons/>
  5. Options Indexes FollowSymLinks MultiViews
  6. AllowOverride All
  7. Require all granted
  8. </Directory>
  9. <Directory /var/www/stk-addons/api/>
  10. Options Indexes FollowSymLinks MultiViews
  11. AllowOverride All
  12. Require all granted
  13. </Directory>
  14. # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
  15. # error, crit, alert, emerg.
  16. # It is also possible to configure the loglevel for particular
  17. # modules, e.g.
  18. LogLevel info
  19. ErrorLog ${APACHE_LOG_DIR}/stk-addons-error.log
  20. CustomLog ${APACHE_LOG_DIR}/stk-addons-access.log combined
  21. </VirtualHost>