mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
more apache2
This commit is contained in:
parent
4545856f88
commit
fe933dccb3
5 changed files with 27 additions and 27 deletions
|
@ -39,8 +39,8 @@
|
||||||
name: postgresql
|
name: postgresql
|
||||||
|
|
||||||
|
|
||||||
- name: SHIM FOR NOW SO ALWAYS DO THE...Enable/Disable/Restart Apache
|
#- name: SHIM FOR NOW SO ALWAYS DO THE...Enable/Disable/Restart Apache
|
||||||
include_tasks: apache.yml
|
# include_tasks: apache.yml
|
||||||
|
|
||||||
- name: Enable/Disable/Restart NGINX
|
- name: Enable/Disable/Restart NGINX
|
||||||
include_tasks: nginx.yml
|
include_tasks: nginx.yml
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
location /moodle {
|
location ^/moodle {
|
||||||
|
alias /opt/iiab/moodle;
|
||||||
|
try_files $uri $uri/ index.php =404;
|
||||||
|
}
|
||||||
|
location ~ /moodle/(.*)\.php {
|
||||||
|
root /opt/iiab/;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $remote_addr;
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_pass http://127.0.0.1:{{ apache_port }};
|
include fastcgi_params;
|
||||||
}
|
fastcgi_index index.php;
|
||||||
|
fastcgi_pass php;
|
||||||
location ~ ^/moodle.*\.php$ {
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
proxy_set_header X-Forwarded-For $remote_addr;
|
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_pass http://127.0.0.1:{{ apache_port }};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
location ^/moodle {
|
|
||||||
alias /opt/iiab/moodle;
|
|
||||||
try_files $uri $uri/ index.php =404;
|
|
||||||
}
|
|
||||||
location ~ /moodle/(.*)\.php {
|
|
||||||
root /opt/iiab/;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $remote_addr;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
include fastcgi_params;
|
|
||||||
fastcgi_index index.php;
|
|
||||||
fastcgi_pass php;
|
|
||||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
||||||
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
|
||||||
}
|
|
13
roles/moodle/templates/moodle-nginx.conf.j2.unused
Normal file
13
roles/moodle/templates/moodle-nginx.conf.j2.unused
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
location /moodle {
|
||||||
|
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 }};
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ ^/moodle.*\.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 }};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue