github.com/drud/ddev@v1.21.5-alpha1.0.20230226034409-94fcc4b94453/containers/ddev-webserver/ddev-webserver-base-files/etc/apache2/mods-available/userdir.conf (about)

     1  <IfModule mod_userdir.c>
     2  	UserDir public_html
     3  	UserDir disabled root
     4  
     5  	<Directory /home/*/public_html>
     6  		AllowOverride FileInfo AuthConfig Limit Indexes
     7  		Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
     8  		<Limit GET POST OPTIONS>
     9  			Require all granted
    10  		</Limit>
    11  		<LimitExcept GET POST OPTIONS>
    12  			Require all denied
    13  		</LimitExcept>
    14  	</Directory>
    15  </IfModule>
    16  
    17  # vim: syntax=apache ts=4 sw=4 sts=4 sr noet