立即注册  找回密码
 立即注册
CeraNetworksBGVM服务器主机交流会员请立即修改密码Sharktech防护
查看: 33|回复: 2

nginx反代问题求解

[复制链接]

nginx反代问题求解

[复制链接]

62

主题

465

回帖

1672

积分

金牌会员

积分
1672
pulpfunction

62

主题

465

回帖

1672

积分

金牌会员

积分
1672
2022-6-12 17:47:43 | 显示全部楼层 |阅读模式
本帖最后由 pulpfunction 于 2022-6-12 18:19 编辑

plex反代问题:

环境:lnmp 单装nginx,宝塔弃用

思路 :https://hostloc.com/thread-930261-1-1.html   照图里设置了,可能nginx哪里没设置对

现在解码服务器用ip不加端口能访问plex
但是中转服务器(线路较好)域名访问就是lnmp首页(安装教程此处应该看到plex后台),此时f12看到也是本鸡ip地址

二楼三楼贴俩nginx.conf
xxx.domin.com 为域名

弄好写个保姆级教程



妈蛋 域名访问没问题了,现在后台一堆本地回环请求




回复

使用道具 举报

62

主题

465

回帖

1672

积分

金牌会员

积分
1672
pulpfunction 楼主

62

主题

465

回帖

1672

积分

金牌会员

积分
1672
2022-6-12 17:49:38 | 显示全部楼层
plex解码鸡:
[ol]
  • user  www www;
  • worker_processes auto;
  • worker_cpu_affinity auto;
  • error_log  /home/wwwlogs/nginx_error.log  crit;
  • pid        /usr/local/nginx/logs/nginx.pid;
  • #Specifies the value for maximum file descriptors that can be opened by this process.
  • worker_rlimit_nofile 51200;
  • events
  •     {
  •         use epoll;
  •         worker_connections 51200;
  •         multi_accept off;
  •         accept_mutex off;
  •     }
  • http
  •     {
  •         include       mime.types;
  •         default_type  application/octet-stream;
  •         server_names_hash_bucket_size 128;
  •         client_header_buffer_size 32k;
  •         large_client_header_buffers 4 32k;
  •         client_max_body_size 5000m;
  •         proxy_set_header X-Real-IP $remote_addr;
  •         proxy_set_header X-Forwarded-For '$proxy_add_x_forwarded_for';
  •         proxy_set_header X-Forwarded-Proto $scheme;
  •         proxy_set_header Sec-WebSocket-Extensions $http_sec_websocket_extensions;
  •         proxy_set_header Sec-WebSocket-Key $http_sec_websocket_key;
  •         proxy_set_header Sec-WebSocket-Version $http_sec_websocket_version;
  •         proxy_cache off;
  •         proxy_redirect off;
  •         proxy_buffering off;
  •         sendfile on;
  •         sendfile_max_chunk 512k;
  •         tcp_nopush on;
  •         keepalive_timeout 60;
  •         tcp_nodelay on;
  •         fastcgi_connect_timeout 300;
  •         fastcgi_send_timeout 300;
  •         fastcgi_read_timeout 300;
  •         fastcgi_buffer_size 64k;
  •         fastcgi_buffers 4 64k;
  •         fastcgi_busy_buffers_size 128k;
  •         fastcgi_temp_file_write_size 256k;
  •         gzip on;
  •         gzip_min_length  1k;
  •         gzip_buffers     4 16k;
  •         gzip_http_version 1.1;
  •         gzip_comp_level 2;
  •         gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;
  •         gzip_vary on;
  •         gzip_proxied   expired no-cache no-store private auth;
  •         gzip_disable   "MSIE [1-6]\.";
  •         #limit_conn_zone $binary_remote_addr zone=perip:10m;
  •         ##If enable limit_conn_zone,add "limit_conn perip 10;" to server section.
  •         server_tokens off;
  •         access_log off;
  • server
  •     {
  •         listen 80 default_server reuseport;
  •         #listen [::]:80 default_server ipv6only=on;
  •         server_name _  xxx.domin.com;
  •         index index.html index.htm index.php;
  •         root  /home/wwwroot/default;
  •         #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 / {
  •             proxy_pass http://127.0.0.1:32400/;
  •             proxy_set_header X-Forwarded-For $remote_addr;
  •             proxy_ssl_verify off;
  •             proxy_http_version 1.1;
  •             proxy_set_header Host $http_host;
  •             proxy_set_header Upgrade $http_upgrade;
  •             proxy_set_header Connection "upgrade";
  •             proxy_read_timeout 86400;
  •         }        
  •         
  •                
  •         
  •         location ~ /\.
  •         {
  •             deny all;
  •         }
  •         access_log  /home/wwwlogs/access.log;
  •     }
  • include vhost/*.conf;
  • }
  • [/ol]复制代码
  • 回复

    使用道具 举报

    62

    主题

    465

    回帖

    1672

    积分

    金牌会员

    积分
    1672
    pulpfunction 楼主

    62

    主题

    465

    回帖

    1672

    积分

    金牌会员

    积分
    1672
    2022-6-12 17:50:45 | 显示全部楼层
    中转鸡:
    [ol]
  • user  www www;
  • worker_processes auto;
  • worker_cpu_affinity auto;
  • error_log  /home/wwwlogs/nginx_error.log  crit;
  • pid        /usr/local/nginx/logs/nginx.pid;
  • #Specifies the value for maximum file descriptors that can be opened by this process.
  • worker_rlimit_nofile 51200;
  • events
  •     {
  •         use epoll;
  •         worker_connections 51200;
  •         multi_accept off;
  •         accept_mutex off;
  •     }
  • http
  •     {
  •         include       mime.types;
  •         default_type  application/octet-stream;
  •         server_names_hash_bucket_size 128;
  •         client_header_buffer_size 32k;
  •         large_client_header_buffers 4 32k;
  •         client_max_body_size 50m;
  •         sendfile on;
  •         sendfile_max_chunk 512k;
  •         tcp_nopush on;
  •         keepalive_timeout 60;
  •         tcp_nodelay on;
  •         fastcgi_connect_timeout 300;
  •         fastcgi_send_timeout 300;
  •         fastcgi_read_timeout 300;
  •         fastcgi_buffer_size 64k;
  •         fastcgi_buffers 4 64k;
  •         fastcgi_busy_buffers_size 128k;
  •         fastcgi_temp_file_write_size 256k;
  •         gzip on;
  •         gzip_min_length  1k;
  •         gzip_buffers     4 16k;
  •         gzip_http_version 1.1;
  •         gzip_comp_level 2;
  •         gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;
  •         gzip_vary on;
  •         gzip_proxied   expired no-cache no-store private auth;
  •         gzip_disable   "MSIE [1-6]\.";
  •         #limit_conn_zone $binary_remote_addr zone=perip:10m;
  •         ##If enable limit_conn_zone,add "limit_conn perip 10;" to server section.
  •         server_tokens off;
  •         access_log off;
  • server
  •     {
  •         listen 80 default_server reuseport;
  •         #listen [::]:80 default_server ipv6only=on;
  •         server_name _  xxx.domin.com;
  •         index index.html index.htm index.php;
  •         root  /home/wwwroot/default;
  •         #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 ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  •         {
  •             expires      30d;
  •         }
  •         location ~ .*\.(js|css)?$
  •         {
  •             expires      12h;
  •         }
  •         location ~ /.well-known {
  •             allow all;
  •         }
  •         location ~ /\.
  •         {
  •             deny all;
  •         }
  •         access_log  /home/wwwlogs/access.log;
  •     }
  • include vhost/*.conf;
  • }
  • [/ol]复制代码
  • 回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    Archiver|小黑屋|HS2V主机综合交流论坛

    GMT+8, 2024-11-22 15:48 , Processed in 0.057669 second(s), 3 queries , Gzip On, Redis On.

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

    快速回复 返回顶部 返回列表