Skip to content
This repository has been archived by the owner on Dec 22, 2024. It is now read-only.

Commit

Permalink
主要参考 [反馈](#12) 添加了部分内容
Browse files Browse the repository at this point in the history
  • Loading branch information
bddjr committed Dec 26, 2023
1 parent e2d712e commit 6eae751
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ ${(ConfS.listenipv6()) ? (` listen [::1]:${buildconf_daemonport} ;\n`) :
${buildconf_listen('','::',ConfS.daemonproxyport())}
# 你访问时使用的域名(支持通配符,但通配符不能用于根域名)
# 如果你访问时的链接直接使用公网IP,那么此处填写公网IP。
server_name ${ConfS.domain()} ;
${ConfS.https() ?` # 前面已经写了默认ssl配置,因此这里并没有ssl配置。您也可以在此处单独配置该域名的ssl。
Expand Down Expand Up @@ -497,6 +498,7 @@ ${ConfS.https() ?` # 前面已经写了默认ssl配置,因此这里并
${buildconf_listen('','::',ConfS.webproxyport())}
# 你访问时使用的域名(支持通配符,但通配符不能用于根域名)
# 如果你访问时的链接直接使用公网IP,那么此处填写公网IP。
server_name domain.com *.domain.com ;
${ConfS.https() ?` # 前面已经写了默认ssl配置,因此这里并没有ssl配置。您也可以在此处单独配置该域名的ssl。
Expand Down
8 changes: 8 additions & 0 deletions 配置HTTPS反向代理.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
> <a href="https://www.cersign.com/free-ssl-certificate.html" target="_blank">https://www.cersign.com/free-ssl-certificate.html</a>
> <a href="https://www.mianfeissl.com/" target="_blank">https://www.mianfeissl.com/</a>
如果您正在使用大厂IDC,遇到非通用端口号(不是80也不是443)仍然不能使用域名建立HTTPS连接的情况,可以尝试直接使用公网IP建立HTTPS连接。[\[参考反馈\]](https://github.com/bddjr/nginx-proxy-docs-for-mcsm/issues/12)
可在下方网址填入公网IP,使用HTTP验证的方式获取IP证书。
> <a href="https://zerossl.com/" target="_blank">https://zerossl.com/</a>
### ⚠别泄露私钥!私钥泄露会导致HTTPS形同虚设!

<br />
Expand All @@ -34,6 +38,8 @@
> Web面板 ***9.8.0***
> 守护进程 ***3.3.0***
如果操作系统的包管理器自带的nginx版本太低(例如ubuntu),请编译安装最新版nginx。

```nginx
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
Expand Down Expand Up @@ -148,6 +154,7 @@ http {
listen 12444 ssl ;
# 你访问时使用的域名(支持通配符,但通配符不能用于根域名)
# 如果你访问时的链接直接使用公网IP,那么此处填写公网IP。
server_name domain.com *.domain.com ;
# 前面已经写了默认ssl配置,因此这里并没有ssl配置。您也可以在此处单独配置该域名的ssl。
Expand Down Expand Up @@ -188,6 +195,7 @@ http {
listen 12333 ssl ;
# 你访问时使用的域名(支持通配符,但通配符不能用于根域名)
# 如果你访问时的链接直接使用公网IP,那么此处填写公网IP。
server_name domain.com *.domain.com ;
# 使用HTTP访问时,断开连接。
Expand Down
7 changes: 7 additions & 0 deletions 配置HTTPS反向代理且合并端口.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ location /path/ {} # 匹配单个路径开头
> <a href="https://www.cersign.com/free-ssl-certificate.html" target="_blank">https://www.cersign.com/free-ssl-certificate.html</a>
> <a href="https://www.mianfeissl.com/" target="_blank">https://www.mianfeissl.com/</a>
如果您正在使用大厂IDC,遇到非通用端口号(不是80也不是443)仍然不能使用域名建立HTTPS连接的情况,可以尝试直接使用公网IP建立HTTPS连接。[\[此处参考了这个反馈\]](https://github.com/bddjr/nginx-proxy-docs-for-mcsm/issues/12)
可在下方网址填入公网IP,使用HTTP验证的方式获取IP证书。
> <a href="https://zerossl.com/" target="_blank">https://zerossl.com/</a>
### ⚠别泄露私钥!私钥泄露会导致HTTPS形同虚设!

<br />
Expand All @@ -53,6 +57,8 @@ location /path/ {} # 匹配单个路径开头
> Web面板 ***9.8.0***
> 守护进程 ***3.3.0***
如果操作系统的包管理器自带的nginx版本太低(例如ubuntu),请编译安装最新版nginx。

```nginx
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
Expand Down Expand Up @@ -165,6 +171,7 @@ http {
listen 12333 ssl ;
# 你访问时使用的域名(支持通配符,但通配符不能用于根域名)
# 如果你访问时的链接直接使用公网IP,那么此处填写公网IP。
server_name domain.com *.domain.com ;
# 使用HTTP访问时,断开连接。
Expand Down
4 changes: 4 additions & 0 deletions 配置HTTP反向代理.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
> Web面板 ***9.8.0***
> 守护进程 ***3.3.0***
如果操作系统的包管理器自带的nginx版本太低(例如ubuntu),请编译安装最新版nginx。

```nginx
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
Expand Down Expand Up @@ -120,6 +122,7 @@ http {
listen 12444 ;
# 你访问时使用的域名(支持通配符,但通配符不能用于根域名)
# 如果你访问时的链接直接使用公网IP,那么此处填写公网IP。
server_name domain.com *.domain.com ;
# 返回 robots.txt 以防止搜索引擎收录
Expand Down Expand Up @@ -149,6 +152,7 @@ http {
}
server {
# Web 端代理后的公网访问HTTP端口(可用多个listen监听多个端口)
# 如果你访问时的链接直接使用公网IP,那么此处填写公网IP。
listen 12333 ;
# 你访问时使用的域名(支持通配符,但通配符不能用于根域名)
Expand Down
3 changes: 3 additions & 0 deletions 配置HTTP反向代理且合并端口.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ location /path/ {} # 匹配单个路径开头
> Web面板 ***9.8.0***
> 守护进程 ***3.3.0***
如果操作系统的包管理器自带的nginx版本太低(例如ubuntu),请编译安装最新版nginx。

```nginx
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
Expand Down Expand Up @@ -136,6 +138,7 @@ http {
listen 12333 ;
# 你访问时使用的域名(支持通配符,但通配符不能用于根域名)
# 如果你访问时的链接直接使用公网IP,那么此处填写公网IP。
server_name domain.com *.domain.com ;
# 此处无需单独返回 robots.txt ,面板已包含该文件。
Expand Down

0 comments on commit 6eae751

Please sign in to comment.