代码拉取完成,页面将自动刷新
同步操作将从 taxilng/fund 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
# 开启gzip
gzip on;
# 启用gzip压缩的最小文件;小于设置值的文件将不会被压缩
gzip_min_length 1k;
# 获取多少内存用于缓存压缩结果,‘4 16k’表示以16k*4为单位获得
gzip_buffers 4 16k;
# gzip 压缩级别 1-10
gzip_comp_level 5;
# 进行压缩的文件类型。
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
# 识别http协议的版本,早起浏览器可能不支持gzip自解压,用户会看到乱码
gzip_http_version 1.1;
# 是否在http header中添加Vary: Accept-Encoding,建议开启
gzip_vary on;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
charset utf-8;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
root /home/navigation;
index index.html index.htm;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
server {
listen 81;
server_name _;
charset utf-8;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
root /home/fundsForWeb;
index index.html index.htm;
}
location /FundMApi/ {
proxy_pass https://fundmobapi.eastmoney.com;
proxy_read_timeout 1500; # 秒
proxy_connect_timeout 1500;
send_timeout 1500;
proxy_ssl_session_reuse off;
proxy_ssl_ciphers HIGH:!DH:!MD5;
}
location /FundMNewApi/ {
proxy_pass https://fundmobapi.eastmoney.com;
proxy_read_timeout 1500; # 秒
proxy_connect_timeout 1500;
send_timeout 1500;
proxy_ssl_session_reuse off;
proxy_ssl_ciphers HIGH:!DH:!MD5;
proxy_set_header 'User-Agent' 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Mobile Safari/537.36';
}
location /api/qt/ {
proxy_pass http://push2.eastmoney.com;
proxy_read_timeout 1500; # 秒
proxy_connect_timeout 1500;
send_timeout 1500;
proxy_ssl_session_reuse off;
proxy_ssl_ciphers HIGH:!DH:!MD5;
}
location /fundsuggest/ {
proxy_pass https://fundsuggest.eastmoney.com/;
proxy_read_timeout 1500; # 秒
proxy_connect_timeout 1500;
send_timeout 1500;
proxy_ssl_session_reuse off;
proxy_ssl_ciphers HIGH:!DH:!MD5;
}
location /rabt/ {
proxy_pass https://x2rr.github.io/;
proxy_read_timeout 1500; # 秒
proxy_connect_timeout 1500;
send_timeout 1500;
proxy_ssl_session_reuse off;
proxy_ssl_ciphers HIGH:!DH:!MD5;
}
location /fundRabtTop/ {
proxy_pass http://fund.rabt.top/;
proxy_read_timeout 1500; # 秒
proxy_connect_timeout 1500;
send_timeout 1500;
proxy_ssl_session_reuse off;
proxy_ssl_ciphers HIGH:!DH:!MD5;
}
location /bspapp {
proxy_pass https://2955b122-0e37-42a7-a4ee-4ddd503fe6b6.bspapp.com/http/user-center/;
proxy_read_timeout 1500; # 秒
proxy_connect_timeout 1500;
send_timeout 1500;
proxy_ssl_session_reuse off;
proxy_ssl_ciphers HIGH:!DH:!MD5;
}
location /searchapi {
proxy_pass https://searchapi.eastmoney.com/;
proxy_read_timeout 1500; # 秒
proxy_connect_timeout 1500;
send_timeout 1500;
proxy_ssl_session_reuse off;
proxy_ssl_ciphers HIGH:!DH:!MD5;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
server {
listen 82 default_server;
server_name _;
charset utf-8;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
root /home/genshin;
index index.html index.htm;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
server {
listen 83 default_server;
server_name _;
charset utf-8;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
root /home/cpu;
index index.html index.htm;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
server {
listen 85 default_server;
server_name _;
charset utf-8;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
root /home/train;
index index.html index.htm;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
# Settings for a TLS enabled server.
#
# server {
# listen 443 ssl http2 default_server;
# listen [::]:443 ssl http2 default_server;
# server_name _;
# root /usr/share/nginx/html;
#
# ssl_certificate "/etc/pki/nginx/server.crt";
# ssl_certificate_key "/etc/pki/nginx/private/server.key";
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 10m;
# ssl_ciphers PROFILE=SYSTEM;
# ssl_prefer_server_ciphers on;
#
# # Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
#
# location / {
# }
#
# error_page 404 /404.html;
# location = /40x.html {
# }
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# }
# }
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。