求教 nginx 配置文件

357 天前
 wayne3602

用手中的 vps 跟着不良林的视频搭建了一个节点,假如现在 nginx 的配置文件是这样的

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 1024;
}

http {
    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;
    gzip on;

    server {
        listen 443 ssl;
        
        server_name nicename.co;  #你的域名
        ssl_certificate       /etc/x-ui/server.crt;  #证书位置
        ssl_certificate_key   /etc/x-ui/server.key; #私钥位置
        
        ssl_session_timeout 1d;
        ssl_session_cache shared:MozSSL:10m;
        ssl_session_tickets off;
        ssl_protocols    TLSv1.2 TLSv1.3;
        ssl_prefer_server_ciphers off;

        location / {
            proxy_pass https://bing.com; #伪装网址
            proxy_redirect off;
            proxy_ssl_server_name on;
            sub_filter_once off;
            sub_filter "bing.com" $server_name;
            proxy_set_header Host "bing.com";
            proxy_set_header Referer $http_referer;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header User-Agent $http_user_agent;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto https;
            proxy_set_header Accept-Encoding "";
            proxy_set_header Accept-Language "zh-CN";
        }


        location /ray {   #分流路径
            proxy_redirect off;
            proxy_pass http://127.0.0.1:10000; #Xray 端口
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
        
        location /xui {   #xui 路径
            proxy_redirect off;
            proxy_pass http://127.0.0.1:9999;  #xui 监听端口
            proxy_http_version 1.1;
            proxy_set_header Host $host;
        }
    }

    server {
        listen 80;
        location /.well-known/ {
               root /var/www/html;
            }
        location / {
                rewrite ^(.*)$ https://$host$1 permanent;
            }
    }
}

现在我还想安装一个 docker 项目,假如这个 docker 将占用端口6666,我将使用域名pl.help.me
那么我如何修改 nginx.conf 文件,让该域名对应 6666 端口并为该域名申请 ssl 证书
小白一枚,只会用 nginx-proxy-manager 来反向代理,一直不会使用 nginx 配置文件来反向代理,恳请各位教一下❤😢

858 次点击
所在节点    问与答
9 条回复
icoming
357 天前
server {
listen 80;
listen 443 ssl;
server_name pl.help.me;

# http 强制跳转 https
if ($scheme = http ) {
return 301 https://$host$request_uri;
}

location / {
proxy_redirect off;
proxy_pass http://127.0.0.1:6666;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
}
}
wayne3602
357 天前
@icoming 谢谢谢谢谢,问一下,如果我申请了 ssl 证书,怎么指定证书位置呢?还是说不需要指定
icoming
357 天前
@wayne3602 照你主题中的配置,放证书、私钥就行了。另外像 certbot 生成证书时可以选择让程序完成这个操作。
wayne3602
357 天前
@icoming 意思是在 server_name 下面这样指定嘛?
```
ssl_certificate 证书位置
ssl_certificate_key 私钥位置
```
icoming
357 天前
@wayne3602 是的
wayne3602
357 天前
@icoming Job for nginx.service failed.
See "systemctl status nginx.service" and "journalctl -xeu nginx.service" for details.
555 失败了,我是这样配置的
#cloudeve
server {
listen 80;
listen 443 ssl;
server_name cloud.waynet.top;
ssl_certificate /etc/cloudreve/server.crt
ssl_certificate_key /etc/cloudreve/server.key

# http 强制跳转 https
if ($scheme = http ) {
return 301 https://$host$request_uri;
}

location / {
proxy_redirect off;
proxy_pass http://127.0.0.1:1234;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
}
}
wayne3602
357 天前
@icoming 找到错误啦,少加了分号;
linyongqianglal
356 天前
老实说我到现在也弄不明白 nginx ,都是 Ctrl C + Ctrl V
wayne3602
356 天前
@linyongqianglal 我也一样,不过我是用 npm ,连复制粘贴都不用🤣

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/940239

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX