RH358配置Web服务器--自动化执行 Web 服务器配置

本文涉及的产品
云防火墙,500元 1000GB
简介: RH358配置Web服务器--自动化执行 Web 服务器配置

RH358配置Web服务器–自动化执行 Web 服务器配置

使用Ansible部署httpd和nginx并配置https。比实用的章节。

RH358专栏地址:https://blog.csdn.net/qq_41765918/category_11532281.html

1. 自动化Web服务器配置

  • 确保在web服务器上安装了httpd或nginx包和任何其他需要的支持包。如果你的剧本可能会更新正在运行的系统上的软件,通知处理器重新启动web服务器软件。

  • 将每个虚拟主机的web内容部署到web服务器上。确保它具有正确的权限和SELinux上下文。

  • 确保您的web服务器的配置文件是正确的配置和安装。如果配置发生变化,请使用处理程序重新加载web服务器。

  • 确保您的TLS配置是正确的,并且服务器证书和匹配的私钥是安全配置和安装的。如果配置改变,使用一个处理程序来重新加载web服务器。

  • 使用Ansible service模块启用和启动服务。

  • 使用Ansible firewalld模块配置防火墙规则。

2. 安装Web服务软件包

使用yum Ansible模块安装web服务包httpd或nginx。

- name: Web server software is installed
  yum:
    name: httpd
    state: present

3. 部署Web内容

  • 可通过多种方式使用 Ansible 部署网站的内容

  • 可使用 copy 或 template 模块来部署单个文件和目录

  • 可使用 synchronize 模块将目录同步到 web 服务器。比如copy模块更高效且更具可扩展性

  • 可使用 git 模块克隆站点

- name: Make sure web site content is present
  git:
    repo: 'https://git.example.com/website/webcontent.git'
    dest: /srv/website
    version: production

在前面的例子中,版本指令可以是一个分支名称或标记名称,以及其他选项。

配置 DocumentRoot 目录的权限

  • 许多你用来部署网页内容的模块也可以同时设置文件所有权和权限。例如可以使用file模块来确保web内容的权限是正确的。

  • 需要确保SELinux标签是正确的。最好确保web服务器上的SELinux策略已经更新,以便文档根目录中的文件的默认类型是httpd_sys_content_t或运行在httpd_t域中的web服务器进程可以读取的其他类型

- name: SELinux policy is correct for web site location
  sefcontext:
    target: '/srv/website(/.*)?'
    setype: httpd_sys_content_t
    state: present

当SELinux默认策略正确时,可以使用file模块setype设置为_default并递归运行,与 restorecon -R 等效的操作:

- name: Correct file permissions and SELinux context on web content
  file:
    path: /srv/website
    state: directory
    recurse: yes
    follow: no
    owner: root
    group: root
    mode: 'a=rX'
    setype: _default

4. 部署服务器证书和密钥

可使用Ansible 生成证书和私钥,并使用 copy 模块将它们部署到正确的位置。

记得在TLS证书更改时通知处理程序重新启动web服务器,以便更改生效。对于Nginx,重新加载就足够了,但是Apache HTTP Server需要完全重启。

- name: Server and CA certificates are in place
  copy:
    src: "{
    { item }}"
    dest: /etc/pki/tls/certs
  loop:
    - website.crt
    - example-ca.crt
  notify: restart server

- name: Server TLS private key is in place
  copy:
    src: website.key
    dest: /etc/pki/tls/private
    mode: '0600'
  notify: restart server

5. 部署配置文件

如果需要在每个主机上定制配置文件,那么部署配置文件的最佳方法是使用jinj2模板。这很强大,因为可以通过使用具有不同变量值的相同模板为不同的虚拟主机部署多个文件。

如果这个任务改变了web服务器上的配置文件,记得通知处理程序重新加载服务。

- name: Deploy Apache virtual host configuration
  template:
    src: "website.conf.j2"
    dest: "/etc/httpd/conf.d/website.conf"
    notify: reload server

6. 配置防火墙规则

通过firewalld模块打开http和https服务的防火墙端口。

- name: Firewall ports are open
  firewalld:
    service: "{
    { item }}"
    permanent: yes
    immediate: yes
    state: enabled
  loop:
    - https
    - http

7. 确保Web服务器正在运行

service模块用于启用和启动web服务。

- name: Web server is enabled and started
  service:
    name: httpd
    state: started
    enabled: yes

8. 准备处理程序

不要忘记在play中包含一个handlers部分,以便根据任务的需要重新加载或重启服务器。

9. 课本练习

[student@workstation ~]$ lab web-automation start

1. 熟悉项目情况。

[student@workstation ~]$ cd /home/student/web-automation
[student@workstation web-automation]$ tree
.
├── ansible.cfg
├── deploy_content.yml
├── files
│   ├── cacert.pem
│   ├── example-ca.crt
│   ├── servera.lab.example.com.crt
│   ├── servera.lab.example.com.key
│   ├── serverb.lab.example.com.crt
│   └── serverb.lab.example.com.key
├── group_vars
│   ├── all
│   │   └── default.yml
│   ├── httpd
│   │   └── vars.yml
│   └── nginx
│       └── vars.yml
├── httpd.yml
├── inventory
├── nginx.yml
├── site.yml
├── solutions
│   ├── disable_all_webservers.yml
│   ├── httpd.yml
│   └── nginx.yml
└── templates
    ├── httpd.conf.j2
    ├── index.html.j2
    └── nginx.conf.j2

7 directories, 21 files
[student@workstation web-automation]$ cat inventory
[webservers]
servera.lab.example.com
serverb.lab.example.com

[httpd]
servera.lab.example.com

[nginx]
serverb.lab.example.com

[student@workstation web-automation]$ cat group_vars/all/default.yml 
---
httpd_packages:
  - httpd
  - mod_ssl
nginx_packages:
  - '@nginx:1.16'
cacert_file: "example-ca.crt"
[student@workstation web-automation]$ cat group_vars/httpd/vars.yml 
web_hosts:
  - "servera.lab.example.com"
[student@workstation web-automation]$ cat group_vars/nginx/vars.yml 
web_hosts:
  - "serverb.lab.example.com"
[student@workstation web-automation]$ cat site.yml 
- import_playbook: httpd.yml
- import_playbook: nginx.yml

[student@workstation web-automation]$ cat deploy_content.yml 
- name: Document root exists for web sites
# 通过遍历从group_vars加载的服务器,使用file模块创建每个根目录。
  file:
    path: "/srv/www/{
    { item }}"
    state: directory
    owner: root
    mode: '0755'
  loop: "{
    { web_hosts }}"

- name: Index test pages are correct
# 使用模板模块复制index.html.j2文件。
  template:
    src: "index.html.j2"
    dest: "/srv/www/{
    { item }}/index.html"
  loop: "{
    { web_hosts }}"

- name: SELinux policy is correct for web site location
# 使用sefcontext模块设置SELinux策略,用httpd_sys_content_t类型标记文档根目录,这样web服务器就可以读取这些文件。
  sefcontext:
    target: '/srv/www(/.*)?'
    setype: httpd_sys_content_t
    state: present

- name: Correct SELinux file context is on web content
# 使用file模块重新标记文件。当setype设置为_default时,将使用策略的默认上下文(前一个任务确保是正确的)。
  file:
    path: /srv/www
    state: directory
    recurse: yes
    follow: no
    setype: _default

- name: Virtual host TLS certs in place
# 使用copy模块将证书和私钥复制到受管理的主机。
  copy:
    src: "{
    { item }}.crt"
    dest: "/etc/pki/tls/certs"
  loop: "{
    { web_hosts }}"

- name: Virtual host TLS private keys in place
  copy:
    src: "{
    { item }}.key"
    dest: "/etc/pki/tls/private"
    mode: '0600'
    owner: root
    group: root
  loop: "{
    { web_hosts }}"

- name: example.com CA cert in place
  copy:
    src: "{
    { cacert_file }}"
    dest: "/etc/pki/tls/certs/{
    { cacert_file }}"

2. 创建httpd.yml剧本。

[student@workstation web-automation]$ cat httpd.yml 
---
- name: Apache HTTP Server web server deployment
  hosts: httpd
  become: true

  tasks:
    - name: Latest software installed for Apache HTTPD
      yum:
        name: "{
    { httpd_packages }}"
        state: present

    - name: Web content is in place
      import_tasks: deploy_content.yml

    - name: Virtual hosts are configured
      template:
        src: "httpd.conf.j2"
        dest: "/etc/httpd/conf.d/{
    { item }}.conf"
      loop: "{
    { web_hosts }}"

    - name: Firewall ports are open
      firewalld:
        service: "{
    { item }}"
        permanent: yes
        immediate: yes
        state: enabled
      loop:
        - https
        - http

    - name: Web server is started and enabled
      service:
        name: httpd
        state: started
        enabled: yes

3. 创建nginx.yml剧本。

[student@workstation web-automation]$ cat nginx.yml 
---
- name: Nginx web server deployment
  hosts: nginx
  become: true

  tasks:
    - name: Latest software installed for nginx
      yum:
        name: "{
    { nginx_packages }}"
        state: present

    - name: Web content is in place
      import_tasks: deploy_content.yml

    - name: Set up nginx serverblock
      template:
        src: "nginx.conf.j2"
        dest: "/etc/nginx/conf.d/{
    { item }}.conf"
      loop: "{
    { web_hosts }}"

    - name: Firewall ports are open
      firewalld:
        service: "{
    { item }}"
        permanent: yes
        immediate: yes
        state: enabled
      loop:
        - https
        - http

    - name: Nginx is enabled and started
      service:
        name: nginx
        state: started
        enabled: yes

4. 语法检查并运行剧本。

[student@workstation web-automation]$ ansible-playbook site.yml

5. 测试访问

完成实验

[student@workstation ~]$ lab web-automation finish

总结

  • 介绍如何使用Ansible部署httpd和nginx。
  • 演示如何配置主页目录并设置HTTPS。
  • 若喜欢金鱼哥的文章,顺手点个赞。也可点个关注,因为后续会不断上干货。

目录
相关文章
|
8天前
|
存储 分布式计算 固态存储
阿里云2核16G、4核32G、8核64G配置云服务器租用收费标准与活动价格参考
2核16G、8核64G、4核32G配置的云服务器处理器与内存比为1:8,这种配比的云服务器一般适用于数据分析与挖掘,Hadoop、Spark集群和数据库,缓存等内存密集型场景,因此,多为企业级用户选择。目前2核16G配置按量收费最低收费标准为0.54元/小时,按月租用标准收费标准为260.44元/1个月。4核32G配置的阿里云服务器按量收费标准最低为1.08元/小时,按月租用标准收费标准为520.88元/1个月。8核64G配置的阿里云服务器按量收费标准最低为2.17元/小时,按月租用标准收费标准为1041.77元/1个月。本文介绍这些配置的最新租用收费标准与活动价格情况,以供参考。
|
6天前
|
监控 PHP Apache
优化 PHP-FPM 参数配置:实现服务器性能提升
优化PHP-FPM的参数配置可以显著提高服务器的性能和稳定性。通过合理设置 `pm.max_children`、`pm.start_servers`、`pm.min_spare_servers`、`pm.max_spare_servers`和 `pm.max_requests`等参数,并结合监控和调优措施,可以有效应对高并发和负载波动,确保Web应用程序的高效运行。希望本文提供的优化建议和配置示例能够帮助您实现服务器性能的提升。
23 3
|
9天前
|
存储 缓存 固态存储
阿里云服务器2核8G、4核16G、8核32G配置租用收费标准与活动价格参考
2核8G、8核32G、4核16G配置的云服务器处理器与内存比为1:4,这种配比的云服务器一般适用于中小型数据库系统、缓存、搜索集群和企业办公类应用等通用型场景,因此,多为企业级用户选择。本文介绍这些配置的最新租用收费标准与活动价格情况,以供参考。
|
10天前
|
存储 编解码 安全
阿里云服务器2核4G、4核8G、8核16G配置租用收费标准与活动价格参考
通常情况下,个人和一般企业用户在购买阿里云服务器时比较喜欢购买2核4G、4核8G、8核16G等配置,这些配置既能满足各种图文类中小型网站和应用又能满足企业网站应用、批量计算、中小型数据库系统等场景,2核4G配置适合新手入门或初创企业,4核8G与8核16G兼具成本与性能优势,适合通用场景,本文介绍这些配置的最新购买价格,包含原价收费标准和最新活动价格。
|
30天前
|
JSON JavaScript 前端开发
《进阶篇第6章:vue中的ajax》包括回顾发送ajax请求方式、vue-cli脚手架配置代理服务器、vue-resource
《进阶篇第6章:vue中的ajax》包括回顾发送ajax请求方式、vue-cli脚手架配置代理服务器、vue-resource
57 22
|
15天前
|
PHP 数据库 数据安全/隐私保护
布谷直播源码部署服务器关于数据库配置的详细说明
布谷直播系统源码搭建部署时数据库配置明细!
|
24天前
|
NoSQL Linux PHP
|
29天前
|
JavaScript 前端开发 Java
vue2知识点:vue-cli脚手架配置代理服务器
vue2知识点:vue-cli脚手架配置代理服务器
51 7
|
29天前
|
前端开发 JavaScript Java
第6章:Vue中的ajax(包含:回顾发送ajax请求方式、vue-cli脚手架配置代理服务器)
第6章:Vue中的ajax(包含:回顾发送ajax请求方式、vue-cli脚手架配置代理服务器)
53 4
|
1月前
|
弹性计算 应用服务中间件 网络安全
ECS服务器使用:SSL证书安装、配置和问题定位指南
本文简要介绍了SSL证书的生成与部署方法,包括使用OpenSSL生成自签名证书和从CA获取证书的步骤,以及在Apache和Nginx服务器上的配置方法。此外,还提供了测试证书是否生效的方法和常见问题的解决策略,帮助确保证书正确安装并解决调试过程中可能遇到的问题。
137 0