Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
tls-howto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CIP-Admins
tls-howto
Merge requests
!1
Fixes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Open
Fixes
flow/tls-howto:fixes
into
master
Overview
0
Commits
2
Changes
2
Open
Florian Schmaus
requested to merge
flow/tls-howto:fixes
into
master
5 years ago
Overview
0
Commits
2
Changes
2
0
0
Merge request reports
Compare
master
master (HEAD)
and
latest version
latest version
854bcdb2
2 commits,
5 years ago
2 files
+
17
−
11
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
README.md
+
5
−
0
View file @ 854bcdb2
Edit in single-file editor
Open in Web IDE
Show full file
@@ -10,14 +10,19 @@ cd $TARGET
@@ -10,14 +10,19 @@ cd $TARGET
vim
${
TARGET
}
.cnf
vim
${
TARGET
}
.cnf
# alle FIXME-Zeilen suchen und anpassen
# alle FIXME-Zeilen suchen und anpassen
# Das X.509 Schlüsselpaar erstellen.
openssl genrsa
-out
${
TARGET
}
.key 4096
openssl genrsa
-out
${
TARGET
}
.key 4096
# Certificate Signing Request (CSR) erstellen.
openssl req
-new
-sha512
-key
${
TARGET
}
.key
-config
${
TARGET
}
.cnf
-out
${
TARGET
}
.csr
openssl req
-new
-sha512
-key
${
TARGET
}
.key
-config
${
TARGET
}
.cnf
-out
${
TARGET
}
.csr
openssl req
-noout
-text
-in
${
TARGET
}
.csr | less
openssl req
-noout
-text
-in
${
TARGET
}
.csr | less
# nachschauen ob da alle alternativeNames richtig drinstehen, ob hash sha512 ist und ob 4096 bit schluessellaenge sind
# nachschauen ob da alle alternativeNames richtig drinstehen, ob hash sha512 ist und ob 4096 bit schluessellaenge sind
# "PIN" auswürfeln.
pwgen
-s
15 |
tee
${
TARGET
}
.pin
pwgen
-s
15 |
tee
${
TARGET
}
.pin
# .key geheimhalten und auf dem Webserver installieren
# .key geheimhalten und auf dem Webserver installieren
# .csr auf der Rechenzentrums-CA-Webseite hochladen, PIN angeben (wird fuer Widerruf gebraucht)
# .csr auf der Rechenzentrums-CA-Webseite hochladen, PIN angeben (wird fuer Widerruf gebraucht)
```
```
Loading