diff --git a/AMHScript b/AMHScript index 817324e..e0b2639 100644 --- a/AMHScript +++ b/AMHScript @@ -27,7 +27,7 @@ function amh_module_install() rm -rf /root/amh/modules/$module_name; done; #Delete conflict modules - if [ -f "/root/amh/modules/limit_req2_nginx_module-1.2/InstallComplete" ]; then + if ls /root/amh/modules/ | grep -q 'limit_req2_nginx_module-1.2'; then amh module limit_req2_nginx_module-1.2 uninstall force; amh module limit_req2_nginx_module-1.2 delete y; fi; diff --git a/hyproxy-cli.php b/hyproxy-cli.php index 9f44b7a..a8f6a3b 100644 --- a/hyproxy-cli.php +++ b/hyproxy-cli.php @@ -97,6 +97,11 @@ function hyproxy_make($server_name){//done server_name %s; index %s; + #error_page + location /ErrorPages/ { + alias /home/wwwroot/index/etc/html/ErrorPages/; + } + location / { default_type text/html; proxy_cache hyproxy; @@ -120,6 +125,11 @@ function hyproxy_make($server_name){//done server_name %s; index %s; + #error_page + location /ErrorPages/ { + alias /home/wwwroot/index/etc/html/ErrorPages/; + } + location / { default_type text/html; proxy_set_header X-Real-IP $remote_addr;