|
@@ -8,54 +8,44 @@ server {
|
|
|
|
|
|
charset $charset;
|
|
|
|
|
|
- set $rootdir /www/jiaoyou20190507/public;
|
|
|
+ #set $rootdir /www/jiaoyou20190507/public;
|
|
|
+ set $rootdir /www/txhl-zsc/fxb-front;
|
|
|
root $rootdir;
|
|
|
index index.php index.html;
|
|
|
-
|
|
|
- set $rewrite yes;
|
|
|
-
|
|
|
- location ~ ^/favicon\.ico$ {
|
|
|
- root $rootdir;
|
|
|
+ if ( $request_uri ~* /(applet\/content|applet_on\/content) ) {
|
|
|
+ rewrite ^/(.*)/content/(.*) /$1/content/index.php?$2 last;
|
|
|
}
|
|
|
-
|
|
|
- location ~* (.*).tpl {
|
|
|
- return 404;
|
|
|
+ if ( $request_uri ~* /log\/data.add ) {
|
|
|
+ rewrite ^/log/(.*?) /log/index.php?$1 last;
|
|
|
}
|
|
|
-
|
|
|
- if ( $request_uri ~* ^/(doc\/|public\/|upload\/|assets\/|static\/|crossdomain\.xml|index\.php|favicon\.ico) ) {
|
|
|
- set $rewrite no;
|
|
|
+ if ( $request_uri ~* /system/wechat ) {
|
|
|
+ rewrite ^/system/wechat /system/index.php?m=payment&a=wechat_notify last;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
- if ($rewrite ~* yes) {
|
|
|
- rewrite ^/(.*) /index.php/$1 last;
|
|
|
- }
|
|
|
-
|
|
|
- location ~ /(doc\/|upload\/|public\/|assets\/|static\/|crossdomain\.xml)
|
|
|
- {
|
|
|
- try_files $uri $uri/ /index.html;
|
|
|
+ if ( $request_uri ~* /pay/pay/notify ) {
|
|
|
+ rewrite ^/pay/pay/notify/([0-9+]) /pay/pay/index.php?l=api.notify&account_id=$1 last;
|
|
|
}
|
|
|
-
|
|
|
- location /doc/ {
|
|
|
- try_files $uri $uri/ /index.html;
|
|
|
+ location / {
|
|
|
+ # First attempt to serve request as file, then
|
|
|
+ # as directory, then fall back to displaying a 404.
|
|
|
+ try_files $uri $uri/ =404;
|
|
|
+ # Uncomment to enable naxsi on this location
|
|
|
+ # include /etc/nginx/naxsi.rules
|
|
|
}
|
|
|
|
|
|
- location ~ ^(.*)$ {
|
|
|
- #add_header Access-Control-Allow-Origin http://192.168.0.109:8080;
|
|
|
- #add_header Access-Control-Allow-Headers X-Requested-With;
|
|
|
- # add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
|
|
|
- #add_header Access-Control-Allow-Credentials true;
|
|
|
+ #location ~ ^(.*)$ {
|
|
|
+ location ~ \.php$ {
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
|
- # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
|
|
|
+ # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini (No settings!)
|
|
|
|
|
|
# With php-cgi alone:
|
|
|
+ #fastcgi_pass web-php7_swoole:9000;
|
|
|
fastcgi_pass web-php7:9000;
|
|
|
- #fastcgi_pass onepage-php5:9000;
|
|
|
+ #fastcgi_pass web-php5:9000;
|
|
|
# With php-fpm:
|
|
|
#fastcgi_pass unix:/var/run/php7-fpm.sock;
|
|
|
fastcgi_index index.php;
|
|
|
- fastcgi_param SCRIPT_FILENAME $rootdir/index.php;
|
|
|
- fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
+ fastcgi_param SCRIPT_FILENAME $rootdir/$fastcgi_script_name;
|
|
|
+ #fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
include fastcgi_params;
|
|
|
}
|
|
|
}
|