|
@@ -40,8 +40,8 @@ configure your apache vhosts to add a reverse proxy that will redirect the dev.j
|
|
|
```apache
|
|
|
<Virtualhost *:80>
|
|
|
ServerName dev.esadhar.fr
|
|
|
- ProxyPass / http://127.0.0.1:8880/
|
|
|
- ProxyPassReverse / http://127.0.0.1:8880/
|
|
|
+ ProxyPass / http://127.0.0.1:9880/
|
|
|
+ ProxyPassReverse / http://127.0.0.1:9880/
|
|
|
ProxyRequests Off
|
|
|
ProxyPreserveHost On
|
|
|
proxy_buffer_size 128k;
|
|
@@ -52,8 +52,8 @@ configure your apache vhosts to add a reverse proxy that will redirect the dev.j
|
|
|
```apache
|
|
|
<Virtualhost *:80>
|
|
|
ServerName dev.phpmyadmin.jeunesetengages.fr
|
|
|
- ProxyPass / http://127.0.0.1:8881/
|
|
|
- ProxyPassReverse / http://127.0.0.1:8881/
|
|
|
+ ProxyPass / http://127.0.0.1:9881/
|
|
|
+ ProxyPassReverse / http://127.0.0.1:9881/
|
|
|
ProxyRequests Off
|
|
|
ProxyPreserveHost On
|
|
|
proxy_buffer_size 128k;
|
|
@@ -69,7 +69,7 @@ server {
|
|
|
server_name dev.jeunesetengages.fr;
|
|
|
|
|
|
location / {
|
|
|
- proxy_pass http://127.0.0.1:8880;
|
|
|
+ proxy_pass http://127.0.0.1:9880;
|
|
|
proxy_set_header Host $host;
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
@@ -84,7 +84,7 @@ server {
|
|
|
server_name dev.phpmyadmin.jeunesetengages.fr;
|
|
|
|
|
|
location / {
|
|
|
- proxy_pass http://127.0.0.1:8881;
|
|
|
+ proxy_pass http://127.0.0.1:9881;
|
|
|
proxy_set_header Host $host;
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|