博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx配置
阅读量:5307 次
发布时间:2019-06-14

本文共 2067 字,大约阅读时间需要 6 分钟。

server     {
listen 7569 default_server; #listen [::]:80 default_server ipv6only=on; server_name www.linktest.com; index index.html index.htm index.php; root /data/gcx/linktrade/public; #error_page 404 /404.html; # Deny access to PHP files in specific directory #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; } include enable-php.conf; location /nginx_status {
stub_status on; access_log off; } location ~ /uploads/.*\.(jpg|png|gif|jpeg)?$ {
root /data/gcx/linktrade/public; expires 12h; } location ~ /static/(css|fonts|icon-font|images|js|plugin)/.*\.(js|css|jpg|png|gif|jpeg|bmp|swf|eot|svg|ttf|woff)?$ {
root /data/gcx/linktrade/public/trade/dist; expires 12h; } location ~ /static/(admin|public)/.*\.(js|css|jpg|png|gif|jpeg)?$ {
root /data/gcx/linktrade/public; expires 12h; } location = /admin?$ {
root /data/gcx/linktrade/public; } location ~ /(#|index.html)?$ {
root /data/gcx/linktrade/public/trade/dist; expires 12h; } # 由于个别页面币币法币数据共存,通过接口名称访问不同的域名 location ~* /api/((Advertisement/adList)|(OtcTrade/financialCenter)|(OtcTrade/getRechargeWalletAddress)|(OtcTrade/platformTransfer)|(Advertisement/getRecommendAdList)|(OtcTrade/getRechargeWalletAddress)) {
proxy_pass http://192.169.1.210:7570; } location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last; } } location ~ /.well-known {
allow all; } location ~ /\. {
deny all; } access_log /data/wwwlogs/access_gcx.log; }

转载于:https://www.cnblogs.com/wzjwffg/p/11277821.html

你可能感兴趣的文章
加固linux
查看>>
IPSP问题
查看>>
HNU 10362 A+B for Input-Output Practice (II)
查看>>
10.17动手动脑
查看>>
WPF中Image显示本地图片
查看>>
Windows Phone 7你不知道的8件事
查看>>
脚本删除文件下的文件
查看>>
实用拜占庭容错算法PBFT
查看>>
java的二叉树树一层层输出,Java构造二叉树、树形结构先序遍历、中序遍历、后序遍历...
查看>>
php仿阿里巴巴,php实现的仿阿里巴巴实现同类产品翻页
查看>>
Node 中异常收集与监控
查看>>
七丶Python字典
查看>>
Excel-基本操作
查看>>
面对问题,如何去分析?(分析套路)
查看>>
Excel-逻辑函数
查看>>
面对问题,如何去分析?(日报问题)
查看>>
数据分析-业务知识
查看>>
nodejs vs python
查看>>
poj-1410 Intersection
查看>>
Java多线程基础(一)
查看>>