使用 Ansible 将 NginX 默认页面更改为空白
Change NginX default page to blank using Ansible
如何使用 Ansible 将 NginX 默认页面更改为空白?
我需要将默认 Welcome to nginx!
页面更改为空白。
在下面的示例中,模块 file
用于简单地删除现有的 index.html 并创建一个空的。
- hosts: webserver
tasks:
- name: Delete file
file:
path: /var/www/html/index.html
state: absent
- name: Create empty index.html file
file:
path: /var/www/html/index.html
state: touch
如何使用 Ansible 将 NginX 默认页面更改为空白?
我需要将默认 Welcome to nginx!
页面更改为空白。
在下面的示例中,模块 file
用于简单地删除现有的 index.html 并创建一个空的。
- hosts: webserver
tasks:
- name: Delete file
file:
path: /var/www/html/index.html
state: absent
- name: Create empty index.html file
file:
path: /var/www/html/index.html
state: touch