Skip to content

Instantly share code, notes, and snippets.

@vanpariyar
Last active February 23, 2022 05:36
Show Gist options
  • Save vanpariyar/3eef78e272d252aa840c9e1d6cfcdd93 to your computer and use it in GitHub Desktop.
Save vanpariyar/3eef78e272d252aa840c9e1d6cfcdd93 to your computer and use it in GitHub Desktop.
Bedrock local setup guide
### 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