readme
This commit is contained in:
parent
7390c5d9be
commit
a4abd14a89
|
@ -47,8 +47,9 @@ add to your /etc/hosts :
|
|||
127.0.0.1 dev.phpmyadmin.caravane.fr
|
||||
```
|
||||
configure your vhosts to add a reverse proxy that will redirect the dev.caravane.fr to our container
|
||||
|
||||
Apache
|
||||
```
|
||||
```apache
|
||||
<Virtualhost *:80>
|
||||
ServerName dev.caravane.fr
|
||||
ProxyPass / http://127.0.0.1:8990/
|
||||
|
@ -60,7 +61,7 @@ Apache
|
|||
proxy_busy_buffers_size 256k;
|
||||
</Virtualhost>
|
||||
```
|
||||
```
|
||||
```apache
|
||||
<Virtualhost *:80>
|
||||
ServerName dev.phpmyadmin.caravane.fr
|
||||
ProxyPass / http://127.0.0.1:8991/
|
||||
|
@ -73,7 +74,7 @@ Apache
|
|||
</Virtualhost>
|
||||
```
|
||||
nginx
|
||||
```
|
||||
```nginx
|
||||
server {
|
||||
listen 80;
|
||||
server_name dev.caravane.fr;
|
||||
|
|
Loading…
Reference in New Issue