Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos
Commits
e94c9345
Commit
e94c9345
authored
Feb 09, 2018
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[software/htmlvalidatorserver] Access vnu over https
parent
efd20411
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
6 deletions
+32
-6
component/java/buildout.cfg
component/java/buildout.cfg
+8
-0
software/htmlvalidatorserver/instance-validator.cfg.in
software/htmlvalidatorserver/instance-validator.cfg.in
+16
-1
software/htmlvalidatorserver/server.xml.in
software/htmlvalidatorserver/server.xml.in
+6
-3
software/htmlvalidatorserver/software.cfg
software/htmlvalidatorserver/software.cfg
+2
-2
No files found.
component/java/buildout.cfg
View file @
e94c9345
...
...
@@ -45,3 +45,11 @@ script =
extract_dir = self.extract(self.download(self.options['url'], self.options.get('md5sum')))
workdir = guessworkdir(extract_dir)
self.copyTree(workdir, "%(location)s")
[java-re-8-output]
# Shared binary location to ease migration
recipe = plone.recipe.command
stop-on-error = true
update-command = ${:command}
command = ${coreutils-output:test} -x ${:keytool}
keytool = ${java-re-8:location}/bin/keytool
software/htmlvalidatorserver/instance-validator.cfg.in
View file @
e94c9345
...
...
@@ -23,6 +23,20 @@ catalina_conf = $${:catalina_base}/conf
#################################
# Tomcat service
#################################
[keystore]
recipe = plone.recipe.command
command =
${java-re-8-output:keytool} \
-genkeypair \
-alias "tomcat" \
-keyalg RSA \
-keypass "$${:pass}" \
-dname "CN=Web Server,OU=Unit,O=Organization,L=City,S=State,C=Country" \
-keystore "$${:file}" \
-storepass "$${:pass}"
file = $${basedirectory:catalina_base}/.keystore
pass = insecure
[tomcat-service]
recipe = slapos.recipe.template
url = ${template-tomcat-service:output}
...
...
@@ -38,6 +52,7 @@ output = $${basedirectory:catalina_conf}/server.xml
mode = 0600
ip = $${slap-network-information:global-ipv6}
port = 8899
scheme = https
[tomcat-listen-promise]
recipe = slapos.cookbook:check_port_listening
...
...
@@ -51,7 +66,7 @@ path = $${basedirectory:promises}/tomcat_listen
[publish-url]
recipe = slapos.cookbook:publish
<= monitor-publish
vnu-url =
http
://[$${tomcat-configuration:ip}]:$${tomcat-configuration:port}/
vnu-url =
$${tomcat-configuration:scheme}
://[$${tomcat-configuration:ip}]:$${tomcat-configuration:port}/
[monitor-instance-parameter]
monitor-httpd-port = 8333
...
...
software/htmlvalidatorserver/server.xml.in
View file @
e94c9345
...
...
@@ -6,9 +6,12 @@
address=
"$${tomcat-configuration:ip}"
port=
"$${tomcat-configuration:port}"
maxThreads=
"10"
scheme=
"
http
"
secure=
"
fals
e"
scheme=
"
$${tomcat-configuration:scheme}
"
secure=
"
tru
e"
clientAuth=
"false"
SSLEnabled=
"true"
keystorePass=
"$${keystore:pass}"
keystoreFile=
"$${keystore:file}"
/>
<Engine
name=
"Catalina"
defaultHost=
"localhost"
>
...
...
software/htmlvalidatorserver/software.cfg
View file @
e94c9345
...
...
@@ -20,7 +20,7 @@ parts =
[template-tomcat-configuration]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/server.xml.in
md5sum =
8b1db3f4107033985df25bd4730571d3
md5sum =
9978b8b9e567f33cb4c853fee85f1637
output = ${buildout:directory}/server.xml.in
mode = 0644
...
...
@@ -37,7 +37,7 @@ mode = 0644
[template-validator]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance-validator.cfg.in
md5sum =
30c0294f5a0cad1f3c2833c1cc61b3c4
md5sum =
0275d7a8a021f84a1303e5c8933c07c3
output = ${buildout:directory}/template-validator.cfg
mode = 0644
...
...
Write
Preview
Markdown
is supported
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