Last active
February 23, 2022 05:36
-
-
Save vanpariyar/3eef78e272d252aa840c9e1d6cfcdd93 to your computer and use it in GitHub Desktop.
Bedrock local setup guide
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Here is the minimul server configuration for the virtual host for the bedrock. | |
```shell | |
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet | |
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName aquapex.localhost | |
ServerAlias www.aquapex.localhost | |
DocumentRoot /var/www/html/aquapex-wp/web | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
</VirtualHost> | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment