| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- server
- {
- listen 80 default_server;
- server_name www.jianjieshenghuo.com jianjieshenghuo.com;
- index success.json;
- root /www/wwwroot/403;
-
- location ~ ^/json {
- default_type application/json;
- return 200 '{
- "code": 0,
- "msg": "交易成功",
- "data": {
- "userId": 7923091928358969344,
- "account": "13684998852",
- "password": null,
- "userName": "aa}}a",
- "userType": 2,
- "idCard": "440981199105062233",
- "userStatus": null,
- "isDelete": null,
- "createTime": null,
- "updateTime": null,
- "sex": 0,
- "address": null,
- "email": null,
- "transHash": null,
- "userAccount": {
- "userId": null,
- "realName": "aa}}a",
- "bankAccount": "",
- "bankName": null,
- "bankBranch": null,
- "balance": null,
- "points": null,
- "userCredit": null,
- "version": null,
- "createTime": null,
- "updateTime": null,
- "pubKey": null,
- "priKey": null
- },
- "userRealPrincipal": null
- }
- }';
- }
-
-
- #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
- #error_page 404/404.html;
- #SSL-END
-
- #ERROR-PAGE-START 错误页配置,可以注释、删除或修改
- #error_page 404 /404.html;
- #error_page 502 /502.html;
- #ERROR-PAGE-END
-
- #PHP-INFO-START PHP引用配置,可以注释或修改
- include enable-php-00.conf;
- #PHP-INFO-END
-
- #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
- include /www/server/panel/vhost/rewrite/403.com.conf;
- #REWRITE-END
-
- #禁止访问的文件或目录
- location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
- {
- return 404;
- }
-
- #一键申请SSL证书验证目录相关设置
- location ~ \.well-known{
- allow all;
- }
-
- location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
- {
- expires 30d;
- error_log off;
- access_log /dev/null;
- }
-
- location ~ .*\.(js|css)?$
- {
- expires 12h;
- error_log off;
- access_log /dev/null;
- }
- access_log /www/wwwlogs/403.com.log;
- error_log /www/wwwlogs/403.com.error.log;
- }
|