fixed pma, changed ports

This commit is contained in:
2021-03-22 11:49:08 +01:00
parent 6ddcc650ab
commit 5f5e0e8404
2 changed files with 12 additions and 15 deletions

View File

@@ -54,8 +54,8 @@ configure your apache vhosts to add a reverse proxy that will redirect the dev.m
```apache
<Virtualhost *:80>
ServerName dev.d7.popsu.archi.fr
ProxyPass / http://127.0.0.1:8880/
ProxyPassReverse / http://127.0.0.1:8880/
ProxyPass / http://127.0.0.1:8980/
ProxyPassReverse / http://127.0.0.1:8980/
ProxyRequests Off
ProxyPreserveHost On
proxy_buffer_size 128k;
@@ -64,8 +64,8 @@ configure your apache vhosts to add a reverse proxy that will redirect the dev.m
</Virtualhost>
<Virtualhost *:80>
ServerName dev.d9.popsu.archi.fr
ProxyPass / http://127.0.0.1:8880/
ProxyPassReverse / http://127.0.0.1:8880/
ProxyPass / http://127.0.0.1:8980/
ProxyPassReverse / http://127.0.0.1:8980/
ProxyRequests Off
ProxyPreserveHost On
proxy_buffer_size 128k;
@@ -74,8 +74,8 @@ configure your apache vhosts to add a reverse proxy that will redirect the dev.m
</Virtualhost>
<Virtualhost *:80>
ServerName dev.phpmyadmin.popsu.archi.fr
ProxyPass / http://127.0.0.1:8881/
ProxyPassReverse / http://127.0.0.1:8881/
ProxyPass / http://127.0.0.1:8981/
ProxyPassReverse / http://127.0.0.1:8981/
ProxyRequests Off
ProxyPreserveHost On
proxy_buffer_size 128k;
@@ -95,7 +95,7 @@ server {
client_max_body_size 100m;
location / {
proxy_pass http://127.0.0.1:8880;
proxy_pass http://127.0.0.1:8980;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -110,7 +110,7 @@ server {
server_name dev.phpmyadmin.popsu.archi.fr;
location / {
proxy_pass http://127.0.0.1:8881;
proxy_pass http://127.0.0.1:8981;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;