抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

Nginx+Nps端口修改配置

这里因为网站时80端口,同时nps又需要80端口,所以需要使用nginx进行一个转发的设置。

nps设置

这里将http端口从80改到了8010。

1
2
3
4
5
6
7
http_proxy_ip=0.0.0.0
http_proxy_port=8010
https_proxy_port=443
https_just_proxy=true
#default https certificate setting
https_default_cert_file=conf/server.pem
https_default_key_file=conf/server.key

nginx设置

相应的,对应的nginx就可以修改如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
user root;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
worker_connections 768;
}

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;


ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;


access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;

gzip on;
server {
listen 80;
server_name *.proxy.com;
location / {
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:8010;
}
}
server {
listen 80;
server_name *.seujyh.cn;
autoindex on;
root /root/luochengyu/HomePage/dist;
index index.html;
location /about {
index about.html;
}
location /blog{
alias /root/luochengyu/HomePage/dist/luochengyublog/public;
index index.html;
}
}
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}


nps的配置文件启动方法

参考配置文件:

1
2
3
4
5
6
7
8
9
10
[common]
server_addr=ip:8024
conn_type=tcp
vkey=??
auto_reconnection=true
web_username=??
web_password=??
crypt=false
compress=false
disconnect_timeout=60

评论