实现效果,访问本地localhost:8080
的资源
通过域名访问
首先要准备服务器一台、已备案的域名一个,我这里的服务器的系统是CentOS7 64
位,其它系统也可,域名可以找一个子域名即可。本地电脑是windows
平台。
ip
上,泛解析一个子域名即可我使用的是第二个,即 *.contiseek.com
frp
软件github frp最新版下载
服务器端linux
选择:
本地windows
选择:
并下载一个linux
端的nginx
,选择稳定版本下载nginx
将服务器端的frp
解压并上传到服务器,我使用的是宝塔面板,直接拖进去就可以了。
打开解压后的文件夹下的frps.ini
,简单配置为这样:
[common]
bind_port = 36666 #与本地windows主机通信端口
vhost_http_port = 36665 #外部访问端口,后面通过nginx转发到80端口
subdomain_host = contiseek.com #泛解析域名后半部分
解压本地端的frp
,修改frpc.ini
,简单配置如下:
[common]
server_addr = 你的服务器公网ip
server_port = 36666 #服务器与本地windows主机通信端口,与服务器端保持一致
[web]
type = http
local_ip = 127.0.0.1 #本地访问地址
local_port = 8080 #本地访问端口
subdomain = wechat #域名的前半部分,最后域名为wechat.contiseek.com
启动服务器端,在linux
解压的frp
路径下执行该命令
./frps -c ./frps.ini
启动客户端,在windows
解压的frp
路径下执行该命令
frpc.exe -c frpc.ini
当客户端出现success时,表示连接成功,随便启动一个tomcat
,端口为8080
在浏览器路径中访问:wechat.contiseek.com:36665
,即可访问到本地的 localhost:8080
nginx
,将服务器的36665
端口映射到80
端口同样,解压nginx
,放入服务器,打开nginx
下的conf/nginx.conf
文件
在http
下配置:
server
{
listen 80; #监听80端口
server_name *.contiseek.com; #当请求中有contiseek.com时
location /
{
proxy_pass http://127.0.0.1:36665/; #将请求映射到36665端口
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_max_temp_file_size 0;
proxy_redirect off;
proxy_read_timeout 240s;
}
}
进入nginx
目录下,启动nginx
:
nginx -c ./conf/nginx.conf
frp
和nginx
设为后台启动nohup ./frps -c ./frps.ini &
nohup .nginx -c ./conf/nginx.conf &