小知识:openstack共享80、443端口的实例代码

前言

因为openstack使用的是apache,所以不能共享80端口,但创建的许多云主机,虽然可以通过rinetd进行跳转,但有时需要直接访问80端口,所以这里我们选择包含了nginx的openrety。

1.1. 安装 openresty

1. 向 centos 系统中添加 openresty 仓库

?
1
2
3
#yum install yum-utils
#yum-config-manager –add-repo https://openresty.org/package/centos/openresty.repo

2. 安装软件包

?
1
#yum install openresty

3. 安装命令行工具

?
1
#yum install openresty-resty

1.2. 配置 openresty

1. 进入 nginx 目录

?
1
#cd /usr/local/openresty/nginx/conf/

2. 编辑 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
#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.17.17.113;
}
}
}

3. 在当前目录下创建 conf.d 文件夹

?
1
2
3
#mkdir /usr/local/openresty/nginx/conf/conf.d
#cd conf.d

4. 创建要被读取的文件,目前定义为每台机器创建一台,这里定义添加一台 aa 机器,则创建 aa.conf 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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.17.17.136:8081;
}
}

1.3.  使用 openresty

1. 检测 nginx 是否配置正确

?
1
2
3
4
5
#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

?
1
#openresty -s reload

3.验证

在浏览器上输入绑定的域名即可直接访问80或者所需端口。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/yaohong/p/8608777.html

声明: 猿站网有关资源均来自网络搜集与网友提供,任何涉及商业盈利目的的均不得使用,否则产生的一切后果将由您自己承担! 本平台资源仅供个人学习交流、测试使用 所有内容请在下载后24小时内删除,制止非法恶意传播,不对任何下载或转载者造成的危害负任何法律责任!也请大家支持、购置正版! 。本站一律禁止以任何方式发布或转载任何违法的相关信息访客发现请向站长举报,会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。本网站的资源部分来源于网络,如有侵权烦请发送邮件至:2697268773@qq.com进行处理。
建站知识

小知识:Linux下Docker CE使用从包中安装的方式详解

2023-4-11 17:23:30

建站知识

小知识:Centos7环境准备openstack pike的安装

2023-4-11 17:38:12

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索