|
|
# Interface FOR YOHO ERP SYSTEM
|
|
|
server {
|
|
|
|
|
|
|
|
|
listen 80;
|
|
|
server_name erp.yoho.yohoops.org;
|
|
|
|
|
|
# only allow local
|
|
|
include ./local.access.conf;
|
|
|
|
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
proxy_set_header Connection "";
|
|
|
|
|
|
|
|
|
access_log /Data/logs/nginx/erp.yoho.yohoops.org_access.log fenxi;
|
|
|
error_log /Data/logs/nginx/erp.yoho.yohoops.org_error.log;
|
|
|
|
|
|
# only allow local
|
|
|
include ./local.access.conf;
|
|
|
|
|
|
|
|
|
if ( $request_method = HEAD ) {
|
|
|
return 200;
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
location /erp/ {
|
...
|
...
|
|