Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Reimar Unger
package.www
Commits
0ed7e821
Commit
0ed7e821
authored
Jul 21, 2021
by
Reimar Unger
Browse files
Fix session with Martin
parent
0786e82f
Changes
2
Hide whitespace changes
Inline
Side-by-side
tasks/configure.yml
View file @
0ed7e821
...
@@ -18,7 +18,7 @@
...
@@ -18,7 +18,7 @@
-
name
:
"
install
SSL
private
key"
-
name
:
"
install
SSL
private
key"
ansible.builtin.copy
:
ansible.builtin.copy
:
src
:
"
{{
www_ssl_priv_key
}}"
src
:
"
{{
www_ssl_priv_key
}}"
dst
:
"
{{
'%s/ssl/private/%s'
|
format(system_config_directory,
www_ssl_priv_key
)
}}"
dst
:
"
{{
www_ssl_priv_key
_dest_path
}}"
mode
:
0640
mode
:
0640
owner
:
"
{{
_stat_sslprivdir.stat.pw_name
}}"
owner
:
"
{{
_stat_sslprivdir.stat.pw_name
}}"
group
:
"
{{
_stat_sslprivdir.stat.gr_name
}}"
group
:
"
{{
_stat_sslprivdir.stat.gr_name
}}"
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
-
name
:
"
install
SSL
certificate"
-
name
:
"
install
SSL
certificate"
ansible.builtin.copy
:
ansible.builtin.copy
:
src
:
"
{{
www_ssl_cert
}}"
src
:
"
{{
www_ssl_cert
}}"
dst
:
"
{{
'%s/
ssl
/
cert
s/%s'
|
format(system_config_directory,
www_ssl_cert)
}}"
dst
:
"
{{
www_
ssl
_
cert
_dest_path
}}"
mode
:
0644
mode
:
0644
owner
:
"
{{
_stat_sslcertdir.stat.pw_name
}}"
owner
:
"
{{
_stat_sslcertdir.stat.pw_name
}}"
group
:
"
{{
_stat_sslcertdir.stat.gr_name
}}"
group
:
"
{{
_stat_sslcertdir.stat.gr_name
}}"
...
...
vars/main.yml
View file @
0ed7e821
---
---
# vars file for package.www
# vars file for package.www
www_serverhostname
:
"
nextcloud.local"
www_serverhostname
:
"
nextcloud.local"
\ No newline at end of file
www_ssl_cert_dest_path
:
"
{{
'%s/ssl/certs/%s'
|
format(system_config_directory,
www_ssl_cert)
}}"
www_ssl_priv_key_dest_path
:
"
{{
'%s/ssl/private/%s'
|
format(system_config_directory,
www_ssl_priv_key)
}}"
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment