mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
12 lines
302 B
Text
12 lines
302 B
Text
|
location /mediawiki {
|
||
|
proxy_pass http://127.0.0.1:{{ apache_port }}/mediawiki;
|
||
|
}
|
||
|
location ~ /mediawiki/.*\.php$ {
|
||
|
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_pass http://127.0.0.1:{{ apache_port }};
|
||
|
|
||
|
}
|