it's working

This commit is contained in:
2022-04-29 16:54:31 +02:00
parent 1e42babd80
commit e6d42ad7b5
5 changed files with 14 additions and 13 deletions
+6 -6
View File
@@ -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;