时间:2021-05-19
前言
因为openstack使用的是apache,所以不能共享80端口,但创建的许多云主机,虽然可以通过rinetd进行跳转,但有时需要直接访问80端口,所以这里我们选择包含了nginx的openrety。
1.1. 安装 openresty
1. 向 centos 系统中添加 openresty 仓库
#yum install yum-utils#yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo2. 安装软件包
#yum install openresty3. 安装命令行工具
#yum install openresty-resty1.2. 配置 openresty
1. 进入 nginx 目录
#cd /usr/local/openresty/nginx/conf/2. 编辑 nginx 配置文件
#vi nginx.confuser root;worker_processes 12;error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pid logs/nginx.pid;events { worker_connections 10240;}http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; include conf.d/*; server { listen 80; # server_name 域名; #指定日志路径 access_log logs/access.log main; error_log logs/error.log; # location / { proxy_pass http://172.17.17.113; } }}3. 在当前目录下创建 conf.d 文件夹
#mkdir /usr/local/openresty/nginx/conf/conf.d#cd conf.d4. 创建要被读取的文件,目前定义为每台机器创建一台,这里定义添加一台 aa 机器,则创建 aa.conf 。
#vi aa.confserver { listen 80;#绑定https include /usr/local/openresty/nginx/https/https.conf;#绑定域名 server_name 域名;#指定日志路径 access_log logs/ope.access.log main; error_log logs/ope.error.log;#指定通过域名跳转端口 location / { proxy_pass http://172.17.17.136:8081; }}1.3. 使用 openresty
1. 检测 nginx 是否配置正确
#openresty -tnginx: the configuration file /usr/local/openresty/nginx/conf/nginx.conf syntax is oknginx: configuration file /usr/local/openresty/nginx/conf/nginx.conf test is successful2. 重载 openresty
#openresty -s reload3.验证
在浏览器上输入绑定的域名即可直接访问80或者所需端口。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
80vCenterServer需要端口80用于直接HTTP连接。端口80会将请求重定向到HTTPS端口443。如果意外使用了http://server而不是ht
当你的站点使用了HTTPS之后,你可能会想把所有的HTTP请求(即端口80的请求),全部都重定向至HTTPS(即端口443)。这时候你可以用以下的方式来做到:(
0.说明本文说描述的方式是用nginx的443重定向到tomcat的8443,nginx的80端口重定到tomcat的8080;乱入:个人标记:caicongy
DNS服务为例: 由于打开网页需要用到http或https服务,因此同理增加80,443端口 4、添加上网控制规则 缺省规则中选择了“凡是不符
netstat-ano|findstr"443"//搜索443端口占用情况,并找到进程IDTCP0.0.0.0:4430.0.0.0:0LISTENING720