{"id":1549,"date":"2024-11-17T18:50:49","date_gmt":"2024-11-17T17:50:49","guid":{"rendered":"https:\/\/apfelcast.com\/?p=1549"},"modified":"2024-11-17T18:50:49","modified_gmt":"2024-11-17T17:50:49","slug":"schuetze-dein-unternehmen-jetzt-mit-vaultwarden","status":"publish","type":"post","link":"https:\/\/it-ion.de\/index.php\/2024\/11\/17\/schuetze-dein-unternehmen-jetzt-mit-vaultwarden\/","title":{"rendered":"Sch\u00fctze dein Unternehmen JETZT mit Vaultwarden!"},"content":{"rendered":"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n <div class=\"brlbs-cmpnt-container brlbs-cmpnt-content-blocker brlbs-cmpnt-with-individual-styles\" data-borlabs-cookie-content-blocker-id=\"default\" data-borlabs-cookie-content=\"PGlmcmFtZSB0aXRsZT0iU2Now7x0emUgZGVpbiBVbnRlcm5laG1lbiBKRVRaVCBtaXQgVmF1bHR3YXJkZW4hIiB3aWR0aD0iNzIwIiBoZWlnaHQ9IjQwNSIgc3JjPSJodHRwczovL3d3dy55b3V0dWJlLmNvbS9lbWJlZC9MUmcwblZZQWpRVT9mZWF0dXJlPW9lbWJlZCIgZnJhbWVib3JkZXI9IjAiIGFsbG93PSJhY2NlbGVyb21ldGVyOyBhdXRvcGxheTsgY2xpcGJvYXJkLXdyaXRlOyBlbmNyeXB0ZWQtbWVkaWE7IGd5cm9zY29wZTsgcGljdHVyZS1pbi1waWN0dXJlOyB3ZWItc2hhcmUiIHJlZmVycmVycG9saWN5PSJzdHJpY3Qtb3JpZ2luLXdoZW4tY3Jvc3Mtb3JpZ2luIiBhbGxvd2Z1bGxzY3JlZW4+PC9pZnJhbWU+\"><div class=\"brlbs-cmpnt-cb-preset-a\"> <p class=\"brlbs-cmpnt-cb-description\">Sie sehen gerade einen Platzhalterinhalt von <strong>Standard<\/strong>. Um auf den eigentlichen Inhalt zuzugreifen, klicken Sie auf die Schaltfl\u00e4che unten. Bitte beachten Sie, dass dabei Daten an Drittanbieter weitergegeben werden.<\/p> <div class=\"brlbs-cmpnt-cb-buttons\"> <a class=\"brlbs-cmpnt-cb-btn\" href=\"#\" data-borlabs-cookie-unblock role=\"button\">Inhalt entsperren<\/a> <a class=\"brlbs-cmpnt-cb-btn\" href=\"#\" data-borlabs-cookie-accept-service role=\"button\" style=\"display: none\">Erforderlichen Service akzeptieren und Inhalte entsperren<\/a> <\/div> <a class=\"brlbs-cmpnt-cb-provider-toggle\" href=\"#\" data-borlabs-cookie-show-provider-information role=\"button\">Mehr Informationen<\/a> <\/div><\/div>\n<\/div><\/figure>\n\n\n\n<p>Hostinger: <a href=\"https:\/\/www.hostinger.de\/apfelcast\">https:\/\/www.hostinger.de\/apfelcast<\/a> Gutschein Code: <strong>APFELCAST<\/strong> <\/p>\n\n\n\n<p>In diesem Video stelle ich euch den kostenlosen OpenSource Passwort Manager Vaultwarden vor. Dabei zeige ich euch, warum sich dieser besonders gut f\u00fcr das Teilen von Passw\u00f6rtern im Team eignet und ich zeige euch auch Schritt-f\u00fcr-Schritt wie ihr diesen auf eurem Server via Docker installieren k\u00f6nnt.<\/p>\n\n\n\n<p>\ud83d\udee0\ufe0f OpenSource IT-Support \ud83d\udee0\ufe0f<br>Du ben\u00f6tigst Unterst\u00fctzung bei der Installation oder Konfiguration von OpenSource Software? Wir helfen dir gerne weiter! Schreib uns einfach eine Mail an: <a href=\"mailto:service@apfelcast.com\">service@apfelcast.com<\/a><br>\u00bb Website: https:\/\/apfelcast.com<\/p>\n\n\n\n<p>\u270c\ud83c\udffbUnterst\u00fctze unseren Kanal auf Patreon: <a href=\"https:\/\/patreon.com\/apfelcast\">https:\/\/patreon.com\/apfelcast<\/a><\/p>\n\n\n\n<div id=\"93964-1\"><script src=\"\/\/ads.themoneytizer.com\/s\/gen.js?type=1\"><\/script><script src=\"\/\/ads.themoneytizer.com\/s\/requestform.js?siteId=93964&amp;formatId=1\"><\/script><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Im Video verwendete Befehle:<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">## install docker compose ##\nbash &lt;(wget -qO- https:\/\/get.docker.com)\n\n## create directory ##\nmkdir vaultwarden \ncd vaultwarden\n\n## create docker-compose.yml\nnano docker-compose.yml\n\nservices:\n  vaultwarden:\n    image: vaultwarden\/server:latest\n    container_name: vaultwarden\n    restart: always\n    environment:\n      DOMAIN: \"https:\/\/vault.example.com\"  # required when using a reverse proxy; \n      SIGNUPS_ALLOWED: \"true\" # Deactivate this with \"false\" after you have created your account so that no strangers can register\n      ADMIN_TOKEN: &lt;output of openssl rand -base64 48>\n    volumes:\n      - .\/vw-data:\/data \n    ports:\n      - 8443:80 \n\t  \n## strat stack ##\ndocker compose up -d\n\n## register via WebUI ##\n\n## disable signups ##\nset  SIGNUPS_ALLOWED: \"false\"\n\n## restart stack ##\ndocker compose up -d\n\n## set secure admin token in admin interface ##\ndocker exec -it vaultwarden \/vaultwarden hash\n\n### install reverse proxy ###\n\n## install apache2 ##\napt install apache2 \n\n##Apache2-Module aktivieren:\n\na2enmod proxy proxy_http proxy_ajp rewrite deflate headers proxy_balancer proxy_connect proxy_html proxy_wstunnel authz_core authn_core setenvif ssl\n\nservice apache2 restart\n\n#Neuen apache2 vHost kon\ufb01gurieren:\n\nnano \/etc\/apache2\/sites-available\/vaultwarden.conf\n\n#Inhalt f\u00fcr vHost einf\u00fcgen:\n\n\n&lt;VirtualHost *:80> \nServerName \n&lt;\/VirtualHost>\n\n#vHost aktivieren und apache2 Neustarten:\na2ensite vaultwarden.conf \nservice apache2 restart\n\n## certbot installiren ##\napt install certbot python3-certbot-apache\n\n##LetsEncrypt-Zerti\ufb01kate mit certbot erstellen:\ncertbot --apache -m mail@demo.com -d domain@demo.com\n\n##Die von certbot erstellte vHost.conf bearbeiten:\nnano \/etc\/apache2\/sites-available\/office-le-ssl.conf\n\n##Unterhalb der Zeile \u201eServerName\u201c den folgenden Block einf\u00fcgen:\n\nSSLProxyEngine on\nSSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:ECDHE-RSA-AES128-SHA:DHE-RSA-AES128-GCM-SHA256:AES256+EDH:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384\nSSLProtocol All -SSLv2 -SSLv3\nSSLCompression off\nSSLHonorCipherOrder on\n\nSetEnvIf Host \"^(.*)$\" THE_HOST=$1\nRequestHeader setifempty X-Forwarded-Proto https\nRequestHeader setifempty X-Forwarded-Host %{THE_HOST}e\nProxyAddHeaders Off\n\nProxyPassMatch (.*)(\\\/websocket)$ \"ws:\/\/127.0.0.1:8443\/$1$2\"\nProxyPass \/ \"http:\/\/127.0.0.1:8443\/\"\nProxyPassReverse \/ \"http:\/\/127.0.0.1:8443\/\"\n\n#Am Ende noch einmal Apache2 neu starten:\n\nsystemctl restart apache2<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hostinger: https:\/\/www.hostinger.de\/apfelcast Gutschein Code: APFELCAST In diesem Video stelle ich euch den kostenlosen OpenSource Passwort&#8230;<\/p>\n","protected":false},"author":1,"featured_media":1552,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-1549","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-allgemein"],"taxonomy_info":{"category":[{"value":1,"label":"Allgemein"}]},"featured_image_src_large":["https:\/\/it-ion.de\/wp-content\/uploads\/2024\/11\/thumb_vaultwarden_A-1024x576.jpg",1024,576,true],"author_info":{"display_name":"Daniel Klozb\u00fccher","author_link":"https:\/\/it-ion.de\/index.php\/author\/wp-master\/"},"comment_info":0,"category_info":[{"term_id":1,"name":"Allgemein","slug":"allgemein","term_group":0,"term_taxonomy_id":1,"taxonomy":"category","description":"","parent":0,"count":89,"filter":"raw","cat_ID":1,"category_count":89,"category_description":"","cat_name":"Allgemein","category_nicename":"allgemein","category_parent":0}],"tag_info":false,"_links":{"self":[{"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/posts\/1549","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/comments?post=1549"}],"version-history":[{"count":0,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/posts\/1549\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/media\/1552"}],"wp:attachment":[{"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/media?parent=1549"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/categories?post=1549"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/it-ion.de\/index.php\/wp-json\/wp\/v2\/tags?post=1549"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}