diff --git a/tutorials/professional-way/guide-only-dehydrated.md b/tutorials/professional-way/guide-only-dehydrated.md index 8a54c46..7c11abc 100644 --- a/tutorials/professional-way/guide-only-dehydrated.md +++ b/tutorials/professional-way/guide-only-dehydrated.md @@ -199,4 +199,32 @@ HANDLER="$1"; shift if [[ "${HANDLER}" = "deploy_cert" ]]; then "$HANDLER" "$@" fi -``` \ No newline at end of file +``` + +## see also + +- 🗯 IRC + - 💬 `##alpine_telegram_english` + - 💬 `#alpine_linux_english` +- 📱 Telegram https://t.me/alpine_linux + - 🇬🇧 https://t.me/alpine_linux_english + - 🇷🇺 https://t.me/alpine_linux_pycckuu (dual english russian, low activity) + - 🇨🇴 https://t.me/alpine_linux_espanol + - 🇧🇬 https://t.me/alpine_linux_bulgarian (dual english bulgarian, low activity) + - 🇨🇳 https://t.me/alpine_linux_chinese (dual english chinese, low activity) + - 📡 https://t.me/opentechnologies (open languajes but english as main) +- Matrix + - 👥 https://matrix.to/#/#alpine-linux-english:matrix.org + +# LICENSE + +**CC BY-NC-SA**: the project allows reusers to distribute, remix, adapt, and build upon the material +in any medium or format for noncommercial purposes only, and only so long as attribution is given +to the creators involved. If you remix, adapt, or build upon the material, you must license the modified +material under identical terms, includes the following elements: + +* **BY** – Credit must be given to the creator of each content respectivelly, starting at the first contributor. +* **NC** – Only noncommercial uses of the work are permitted, with exceptions if you fill an issue here! +* **SA** – Adaptations must be shared under the same terms, you must obey this terms and do not change it. + +For more information check the [alpine/copyright.md](../../alpine/copyright.md) diff --git a/tutorials/professional-way/server-alpine-apache2-professional.md b/tutorials/professional-way/server-alpine-apache2-professional.md index de71060..3e48ba6 100644 --- a/tutorials/professional-way/server-alpine-apache2-professional.md +++ b/tutorials/professional-way/server-alpine-apache2-professional.md @@ -186,6 +186,7 @@ sed -i -r 's#^SSLCertificateChainFile.*#SSLCertificateChainFile /etc/ssl/certs/l sed -i -r 's#\#.*SSLCertificateChainFile.*#SSLCertificateChainFile /etc/ssl/certs/localhost.pem#g' /etc/apache2/conf.d/ssl.conf sed -i -r 's#^Listen.*#Listen 443#g' /etc/apache2/conf.d/ssl.conf +sed -i -r 's#^#g' /etc/apache2/conf.d/ssl.conf sed -i -r 's#^SSLProtocol.*#SSLProtocol all#g' /etc/apache2/conf.d/ssl.conf @@ -202,6 +203,9 @@ rc-service apache2 restart 3. to only allow most secure negociations and a bit of compat, set to `SSLCipherSuite HIGH:MEDIUM:ECDHE:!MD5:!RC4:!3DES:!ADH` 4. to only allow most secure negociations and a bit of compat, set proxy to `SSLProxyCipherSuite HIGH:MEDIUM:ECDHE:!MD5:!RC4:!3DES:!ADH` +Best is to made a redirection inside of the document root of port 80 deifintion +also put a `` conditional at the beginning of the ssl config file. + ## Lest Encrypt To obtain a real certificate, use our best guide for: