Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
typo3_site
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chef Cookbooks
typo3_site
Commits
71e3e49c
Commit
71e3e49c
authored
7 years ago
by
Stefan Galinski
Browse files
Options
Downloads
Patches
Plain Diff
[TASK] Cleanup
parent
f11c9391
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
recipes/default.rb
+0
-16
0 additions, 16 deletions
recipes/default.rb
with
0 additions
and
16 deletions
recipes/default.rb
+
0
−
16
View file @
71e3e49c
...
...
@@ -242,47 +242,31 @@ end
# Instructions are from here: https://stackoverflow.com/questions/7580508/getting-chrome-to-accept-self-signed-localhost-certificate/43666288#43666288
template
'/etc/apache2/ssl/v3.ext'
do
source
'v3.ext'
owner
'vagrant'
group
data_bag
[
'groupId'
]
end
template
'/etc/apache2/ssl/create_certificate_for_domain.sh'
do
source
'create_certificate_for_domain.sh'
owner
'vagrant'
group
data_bag
[
'groupId'
]
end
# not needed (globally used, but maybe someone else needs this)
# template 'create_root_cert_and_key.sh' do
# source 'create_root_cert_and_key.sh'
# owner 'vagrant'
# group data_bag['groupId']
# end
template
'/etc/apache2/ssl/rootCA.key'
do
source
'rootCA.key'
owner
'vagrant'
group
data_bag
[
'groupId'
]
end
template
'/etc/apache2/ssl/rootCA.pem'
do
source
'rootCA.pem'
owner
'vagrant'
group
data_bag
[
'groupId'
]
end
template
'/etc/apache2/ssl/rootCA.srl'
do
source
'rootCA.srl'
owner
'vagrant'
group
data_bag
[
'groupId'
]
end
bash
'Create Certificate'
do
cwd
'/etc/apache2/ssl/'
user
'vagrant'
group
data_bag
[
'groupId'
]
code
<<-
EOF
chmod 755 create_certificate_for_domain.sh
./create_certificate_for_domain.sh
#{
node
[
'typo3_site'
][
'hostname'
]
}
...
...
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