Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
apache
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
apache
Commits
42d55cd1
Commit
42d55cd1
authored
5 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
ansible-playbooks/general#85 Linting
parent
73d0461f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
defaults/main.yml
+12
-12
12 additions, 12 deletions
defaults/main.yml
handlers/main.yml
+8
-8
8 additions, 8 deletions
handlers/main.yml
tasks/apache.yml
+42
-42
42 additions, 42 deletions
tasks/apache.yml
tasks/main.yml
+11
-7
11 additions, 7 deletions
tasks/main.yml
with
73 additions
and
69 deletions
defaults/main.yml
+
12
−
12
View file @
42d55cd1
...
...
@@ -15,27 +15,27 @@ apache_modules:
-
rewrite
-
ssl
-
vhost_alias
apache_version
:
'
2.4
'
apache_conf_dir
:
'
conf-available
'
apache_conf_ext
:
'
.conf
'
apache_conf_default_prefix
:
'
000-
'
apache_server_admin
:
'
webmaster@paragon-es.de
'
apache_server_default
:
'
yes
'
apache_server_default_ssl
:
'
no
'
apache_version
:
2.4
apache_conf_dir
:
conf-available
apache_conf_ext
:
.conf
apache_conf_default_prefix
:
000-
apache_server_admin
:
webmaster@paragon-es.de
apache_server_default
:
yes
apache_server_default_ssl
:
no
apache_server_default_aliases
:
[]
apache_server_default_aliases_redirect
:
[]
apache_server_defs
:
[]
apache_server_default_root
:
'
/html
'
apache_server_default_root
:
/html
apache_server_default_svn_source
:
false
apache_server_default_svn_target
:
'
live
'
apache_server_default_svn_target
:
live
apache_certificates
:
[]
apache_auth
:
false
apache_cache
:
active
:
true
default
:
'
A14400
'
default
:
A14400
bytype
:
-
type
:
'
text/html
'
default
:
'
A900
'
-
type
:
text/html
default
:
A900
apache_global_redirect
:
ip
:
[]
agent
:
[]
...
...
This diff is collapsed.
Click to expand it.
handlers/main.yml
+
8
−
8
View file @
42d55cd1
---
# file: roles/apache/handlers/main.yml
-
name
:
'
Apache
|
Restart
Apache
'
-
name
:
Apache | Restart Apache
service
:
name=apache2
state=restarted
-
name
:
'
Apache
|
Checkout
htdocs
for
default
'
-
name
:
Apache | Checkout htdocs for default
subversion
:
repo={{ apache_server_default_svn_source }}
dest=/var/www/{{ apache_server_default_svn_target }}
become
:
no
notify
:
'
Apache
|
Change
ownership
for
web
server
files
'
notify
:
Apache | Change ownership for web server files
async
:
3000
poll
:
0
when
:
apache_server_default_svn_source !=
false
-
name
:
'
Apache
|
Checkout
htdocs
for
our
site(s)
'
-
name
:
Apache | Checkout htdocs for our site(s)
subversion
:
repo={{ item.svn_source }}
dest=/var/www/{{ item.svn_target }}
become
:
no
with_items
:
'
{{
apache_server_defs
}}'
notify
:
'
Apache
|
Change
ownership
for
web
server
files
'
notify
:
Apache | Change ownership for web server files
async
:
3000
poll
:
0
-
name
:
'
Apache
|
Change
ownership
for
web
server
files
'
-
name
:
Apache | Change ownership for web server files
file
:
path="/var/www"
owner="www-data"
...
...
@@ -34,14 +34,14 @@
recurse=yes
follow=no
-
name
:
'
Apache
|
Change
mode
for
web
server
files
'
-
name
:
Apache | Change mode for web server files
file
:
path=/var/www
mode=g+w
recurse=yes
follow=no
-
name
:
'
Apache
|
Change
mode
for
web
server
root
dir
'
-
name
:
Apache | Change mode for web server root dir
file
:
path=/var/www
mode='755'
This diff is collapsed.
Click to expand it.
tasks/apache.yml
+
42
−
42
View file @
42d55cd1
---
# file: roles/apache/tasks/apache.yml
-
name
:
"
Apache
|
Apt
Repository
"
-
name
:
Apache | Apt Repository
apt_repository
:
repo='{{ item }}'
state='present'
mode='644'
with_items
:
'
{{
apache_repositories
}}'
-
name
:
"
Apache
|
Install
required
packages.
"
-
name
:
Apache | Install required packages.
apt
:
pkg='{{ apache_packages }}'
state=present
force=yes
notify
:
"
Apache
|
Restart
Apache"
-
name
:
"
Apache
|
Enable
some
required
modules
"
-
name
:
Apache | Enable some required modules
apache2_module
:
name='{{ item }}'
state=present
with_items
:
'
{{
apache_modules
}}'
notify
:
"
Apache
|
Restart
Apache"
-
name
:
"
Apache
|
Turn
on
Extended
Status
"
-
name
:
Apache | Turn on Extended Status
lineinfile
:
dest=/etc/apache2/apache2.conf
regexp='^ExtendedStatus '
line='ExtendedStatus On'
notify
:
"
Apache
|
Restart
Apache"
-
name
:
"
Apache
|
Turn
on
SendFile
"
-
name
:
Apache | Turn on SendFile
lineinfile
:
dest=/etc/apache2/apache2.conf
regexp='^EnableSendfile '
line='EnableSendfile On'
notify
:
"
Apache
|
Restart
Apache"
-
name
:
"
Apache
|
Configure
Security,
Global
Redirect,
Global
Deny,
Logging
"
-
name
:
Apache | Configure Security, Global Redirect, Global Deny, Logging
template
:
src='etc-apache2-conf-available-{{item }}'
dest='/etc/apache2/{{ apache_conf_dir }}/{{ item }}.conf'
...
...
@@ -44,49 +44,49 @@
group='root'
mode='644'
with_items
:
-
'
security
'
-
'
global-redirect
'
-
'
global-deny
'
-
'
letsencrypt-redirect
'
-
'
redirect-ssl
'
-
'
other-vhosts-access-log
'
-
security
-
global-redirect
-
global-deny
-
letsencrypt-redirect
-
redirect-ssl
-
other-vhosts-access-log
notify
:
-
"
Apache
|
Restart
Apache"
tags
:
'
ApacheConfig'
tags
:
-
ApacheConfig
-
name
:
"
Apache
|
Write
SSL
Apache
Options
"
-
name
:
Apache | Write SSL Apache Options
template
:
src
:
'
options-ssl-apache.conf'
dest
:
'
/etc/apache2/{{
apache_conf_dir
}}/options-ssl-apache.conf'
owner
:
'
root'
group
:
'
root'
mode
:
'
644'
tags
:
'
abcabcabc'
-
name
:
"
Apache
|
Install
SSL
certificates"
src
:
options-ssl-apache.conf
dest
:
/etc/apache2/{{ apache_conf_dir }}/options-ssl-apache.conf
owner
:
root
group
:
root
mode
:
644
-
name
:
Apache | Install SSL certificates
copy
:
src={{inventory_dir}}/files/ssl/{{item.1.file}}
dest=/etc/ssl/private
with_subelements
:
-
'
{{
apache_certificates
}}
'
-
{{
apache_certificates
}}
-
certs
notify
:
"
Apache
|
Restart
Apache"
-
name
:
"
Apache
|
Create
htdocs
directory
for
default
"
-
name
:
Apache | Create htdocs directory for default
file
:
dest=/var/www{{ apache_server_default_root }}
state=directory
owner=www-data
group=www-data
-
name
:
"
Apache
|
Create
htdocs
directory
for
SVN
default
"
-
name
:
Apache | Create htdocs directory for SVN default
file
:
dest=/var/www/{{ apache_server_default_svn_target }}
state=directory
owner=www-data
group=www-data
-
name
:
"
Apache
|
Create
htdocs
directory
for
our
site(s)
"
-
name
:
Apache | Create htdocs directory for our site(s)
file
:
dest=/var/www/{{ item.svn_target }}
state=directory
...
...
@@ -94,7 +94,7 @@
group=www-data
with_items
:
'
{{
apache_server_defs
}}'
-
name
:
"
Apache
|
Configuration
file
for
default
site
"
-
name
:
Apache | Configuration file for default site
template
:
src=etc-apache2-sites-available-default
dest=/etc/apache2/sites-available/{{ apache_conf_default_prefix }}default{{ apache_conf_ext }}
...
...
@@ -106,7 +106,7 @@
-
"
Apache
|
Restart
Apache"
-
"
Apache
|
Checkout
htdocs
for
default"
-
name
:
"
Apache
|
Configuration
file
for
default
ssl
site
"
-
name
:
Apache | Configuration file for default ssl site
template
:
src=etc-apache2-sites-available-default-ssl
dest=/etc/apache2/sites-available/{{ apache_conf_default_prefix }}default-ssl{{ apache_conf_ext }}
...
...
@@ -118,7 +118,7 @@
-
"
Apache
|
Restart
Apache"
-
"
Apache
|
Checkout
htdocs
for
default"
-
name
:
"
Apache
|
Configuration
file
for
our
site(s)
"
-
name
:
Apache | Configuration file for our site(s)
template
:
src=etc-apache2-sites-available-vhost
dest=/etc/apache2/sites-available/{{ item.vhost }}{{ apache_conf_ext }}
...
...
@@ -130,42 +130,42 @@
-
"
Apache
|
Restart
Apache"
-
"
Apache
|
Checkout
htdocs
for
our
site(s)"
-
name
:
"
Apache
|
Disable
the
default
site
"
-
name
:
Apache | Disable the default site
command
:
a2dissite {{ item }}
with_items
:
-
'
default
'
-
'
{{
apache_conf_default_prefix
}}default
'
-
default
-
{{
apache_conf_default_prefix
}}
default
ignore_errors
:
true
when
:
apache_server_default == "no"
-
name
:
"
Apache
|
Disable
the
default
ssl
site
"
-
name
:
Apache | Disable the default ssl site
command
:
a2dissite {{ item }}
with_items
:
-
'
default-ssl
'
-
'
{{
apache_conf_default_prefix
}}default-ssl
'
-
default-ssl
-
{{
apache_conf_default_prefix
}}
default-ssl
ignore_errors
:
true
when
:
apache_server_default_ssl == "no"
-
name
:
"
Apache
|
Enable
the
default
site
"
-
name
:
Apache | Enable the default site
command
:
a2ensite {{ apache_conf_default_prefix }}default creates=/etc/apache2/sites-enabled/{{ apache_conf_default_prefix }}default{{ apache_conf_ext }}
when
:
apache_server_default == "yes"
-
name
:
"
Apache
|
Enable
the
default
ssl
site
"
-
name
:
Apache | Enable the default ssl site
command
:
a2ensite {{ apache_conf_default_prefix }}default-ssl creates=/etc/apache2/sites-enabled/{{ apache_conf_default_prefix }}default-ssl{{ apache_conf_ext }}
when
:
apache_server_default_ssl == "yes"
-
name
:
"
Apache
|
Enable
our
new
site(s)
"
-
name
:
Apache | Enable our new site(s)
command
:
a2ensite {{ item.vhost }} creates=/etc/apache2/sites-enabled/{{ item.vhost }}{{ apache_conf_ext }}
with_items
:
'
{{
apache_server_defs
}}'
-
name
:
"
Apache
|
Create
passwords
directory
for
AuthType
Basic
"
-
name
:
Apache | Create passwords directory for AuthType Basic
file
:
dest=/var/www/passwords
state=directory
owner=www-data
group=www-data
-
name
:
"
Apache
|
Setup
AuthType
Basic
"
-
name
:
Apache | Setup AuthType Basic
htpasswd
:
path="/var/www/passwords/{{ apache_auth.user }}"
name="{{ apache_auth.user }}"
...
...
@@ -175,14 +175,14 @@
mode='640'
when
:
apache_auth
-
name
:
"
Apache
|
Create
default
content
directory
"
-
name
:
Apache | Create default content directory
file
:
dest=/var/www/html
state=directory
owner=www-data
group=www-data
-
name
:
"
Apache
|
Copy
default
HTML
site
"
-
name
:
Apache | Copy default HTML site
template
:
src=index.html
dest=/var/www/html/index.html
...
...
This diff is collapsed.
Click to expand it.
tasks/main.yml
+
11
−
7
View file @
42d55cd1
...
...
@@ -5,16 +5,20 @@
---
# file: roles/apache/tasks/main.yml
-
name
:
"
Apache
Role"
set_fact
:
role_apache_started=true
tags
:
'
always'
-
name
:
Apache Role
set_fact
:
role_apache_started
:
yes
tags
:
-
always
-
block
:
-
import_tasks
:
apache.yml
-
name
:
'
Remember
that
this
role
had
been
run'
set_fact
:
role_apache_completed=true
tags
:
'
always'
-
name
:
Remember that this role had been run
set_fact
:
role_apache_completed
:
yes
tags
:
-
always
when
:
'
"apache"
not
in
excluded_roles
and
role_apache_completed
is
not
defined
'
when
:
not excluded_roles or
"apache" not in excluded_roles and role_apache_completed is not defined
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment