no way to compare when less than two revisions

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.


Vorherige Überarbeitung
Nächste Überarbeitung
server_und_serverdienste:odoo_auf_ubuntu_mit_let_s_encrypt [2020/09/20 15:53] loma
Zeile 1: Zeile 1:
 +====== Odoo auf Ubuntu 20.04 mit Let's Encrypt ======
 +
 +Als erstes installiert man sich einen Ubuntu Server 20.04. Alles Standard. Als erstes richten wir zusätzliche Paketquellen ein.
 +<code>
 +apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 2FAB19E7CCB7F415
 +wget -O - https://nightly.odoo.com/odoo.key | sudo apt-key add -
 +echo "deb http://nightly.odoo.com/13.0/nightly/deb/ ./" | sudo tee /etc/apt/sources.list.d/odoo.list
 +echo "deb http://apt.iteas.at/iteas focal main" > /etc/apt/sources.list.d/iteas.list
 +apt update
 +</code>
 +Darin installieren wir zuerst den Postgresql und ein paar nützliche Abhängigkeiten.
 +<code>
 +apt install postgresql postgresql-client python3-ldap wkhtmltox python-dev libldap2-dev libsasl2-dev libssl-dev
 +</code>
 +Hat das geklappt gehts auch schon and die Odoo Installation.
 +<code>
 +apt install odoo
 +</code>
 +Danach ist Odoo bereits auf der Seite http://deinServer:8069/ erreichbar, und du kannst dir eine neue Datenbank anlegen. 
 +
 +
 +===== Nginx Proxy mit Let's Encrypt =====
 +<code>
 +apt -y install nginx
 +nano /etc/nginx/conf.d/odoo.conf
 +</code>
 +
 +
 +
 +https://www.vultr.com/docs/installing-odoo-10-community-on-ubuntu-16-04 \\
 +https://linuxize.com/post/how-to-deploy-odoo-12-on-ubuntu-18-04/ \\
 +https://linuxize.com/post/secure-nginx-with-let-s-encrypt-on-ubuntu-18-04/ \\
 +https://www.odoo.com/de_DE/forum/hilfe-1?search=encrypt \\
 +https://www.odoo.com/de_DE/forum/hilfe-1/question/where-is-the-folder-well-known-installed-when-using-letsencrypt-module-for-apache2-156380 \\