最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
openstack共享80、443端口的实例代码
时间:2022-06-30 17:35:46 编辑:袖梨 来源:一聚教程网
前言
因为openstack使用的是apache,所以不能共享80端口,但创建的许多云主机,虽然可以通过rinetd进行跳转,但有时需要直接访问80端口,所以这里我们选择包含了nginx的openrety。
1.1. 安装 openresty
1. 向 centos 系统中添加 openresty 仓库
#yum install yum-utils #yum-config-manager --add-repo https://o*pe*nre*sty.org/package/centos/openresty.repo
2. 安装软件包
#yum install openresty
3. 安装命令行工具
#yum install openresty-resty
1.2. 配置 openresty
1. 进入 nginx 目录
#cd /usr/local/openresty/nginx/conf/
2. 编辑 nginx 配置文件
#vi nginx.conf user 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.*1**7.17.113; } } }
3. 在当前目录下创建 conf.d 文件夹
#mkdir /usr/local/openresty/nginx/conf/conf.d #cd conf.d
4. 创建要被读取的文件,目前定义为每台机器创建一台,这里定义添加一台 aa 机器,则创建 aa.conf 。
#vi aa.conf server { 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.*1*7*.17.136:8081; } }
1.3. 使用 openresty
1. 检测 nginx 是否配置正确
#openresty -t nginx: the configuration file /usr/local/openresty/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/openresty/nginx/conf/nginx.conf test is successful
2. 重载 openresty
#openresty -s reload
3.验证
在浏览器上输入绑定的域名即可直接访问80或者所需端口。相关文章
- 羊蹄山之魂是独占吗 羊蹄山之魂独占时间介绍 10-14
- 三角洲行动密码门大全(每日更新) 全地图今日密码更新汇总 10-14
- 羊蹄山之魂pc什么时候上 羊蹄山之魂pc版预计上线时间 10-14
- 无畏契约十字准星代码大全 手感好的十字准星代码推荐 10-14
- 崩坏:星穹铁道忘却之庭弦外之声满星阵容怎么搭配-崩坏:星穹铁道忘却之庭弦外之声满星队伍搭配推荐 10-14
- 辉烬格洛克怎么样 格洛克角色介绍 10-14