13 lines
408 B
Plaintext
13 lines
408 B
Plaintext
<VirtualHost *:80>
|
|
ServerName YourServerName
|
|
ServerAlias YourServerName
|
|
DocumentRoot PWD/public
|
|
<Directory "PWD/public">
|
|
Options Indexes FollowSymLinks MultiViews
|
|
Order allow,deny
|
|
Allow from all
|
|
AllowOverride All
|
|
Require all granted
|
|
Satisfy Any
|
|
</Directory>
|
|
</VirtualHost> |