Skip to content
Snippets Groups Projects
Select Git revision
  • 558df580576400912d2fc5c5c4a1b569cecc43fd
  • master default protected
  • Legacy_Php7
3 results

readme.md

Blame
  • vhost_app.conf 370 B
    # TARGET: docker/containers/web-server/apache/sites-enabled/vhost_app.conf
    #
    # {{generator}}
    #
    <VirtualHost *:80>
      DocumentRoot {{WEBROOT}}
      <Directory {{WEBROOT}}>
          AllowOverride None
          Order Allow,Deny
          Allow from All
      </Directory>
    
      # example to prevent access with http
      <Location "/no-access">
        Require all denied
      </Location>
    
    </VirtualHost>