26f523867d
In order to reduce amount of tech involved in deployment and better share commond resources and approaches Nginx web server is replaced with Apache2 now. Depends-On: https://review.opendev.org/c/openstack/openstack-ansible/+/924157 Change-Id: Ib8c7e985c710241bd97153130b77fcb1e904bfe1
72 lines
2.0 KiB
YAML
72 lines
2.0 KiB
YAML
---
|
|
# Copyright 2016, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- name: Enable git automatic thread count detection
|
|
git_config:
|
|
scope: system
|
|
name: pack.threads
|
|
value: '0'
|
|
|
|
- name: Enable apache2 modules
|
|
apache2_module:
|
|
name: "{{ item.name }}"
|
|
state: "{{ item.state }}"
|
|
ignore_configcheck: yes
|
|
with_items: "{{ repo_apache_modules }}"
|
|
when:
|
|
- ansible_facts['pkg_mgr'] == 'apt'
|
|
notify: Restart web server
|
|
|
|
- name: Disable default apache site
|
|
file:
|
|
path: "{{ item }}"
|
|
state: "absent"
|
|
with_items: "{{ repo_apache_default_sites }}"
|
|
notify: Restart web server
|
|
|
|
- name: Ensure Apache configuration
|
|
lineinfile:
|
|
dest: "{{ repo_apache_conf }}"
|
|
line: "{{ item }}"
|
|
notify: Restart web server
|
|
with_items:
|
|
- "ServerName {{ repo_server_name }}"
|
|
- "ErrorLog syslog:daemon"
|
|
|
|
- name: Create Apache config
|
|
template:
|
|
src: "{{ item['src'] }}"
|
|
dest: "{{ item['dest'] }}"
|
|
owner: "{{ item['owner'] }}"
|
|
group: "{{ item['group'] }}"
|
|
mode: "0644"
|
|
with_items: "{{ repo_apache_configs }}"
|
|
notify: Restart web server
|
|
|
|
- name: Enable repo site
|
|
file:
|
|
src: "/etc/{{ repo_system_service_name }}/sites-available/openstack_slushee.conf"
|
|
dest: "{{ repo_vhost_enable_path }}/openstack_slushee.conf"
|
|
state: "link"
|
|
notify: Restart web server
|
|
|
|
- name: Remove Listen from Apache config
|
|
lineinfile:
|
|
dest: "{{ repo_apache_security_conf }}"
|
|
regexp: '^(Listen.*)'
|
|
backrefs: yes
|
|
line: '#\1'
|
|
notify: Restart web server
|