Differenze tra le versioni di "CiviCRM 2022/Technical documentation"
Jump to navigation
Jump to search
(→Provision: more info) |
(→Unix users: more info) |
||
Riga 43: | Riga 43: | ||
== Unix users == | == Unix users == | ||
− | Current enabled users: | + | Current enabled users with sudo: |
+ | * emerald-stefano ({{Fornitore link|eme}}) | ||
+ | * civihost-samuele ({{Fornitore link|civih}}) | ||
+ | * civihost-stefano ({{Fornitore link|civih}}) | ||
+ | * civihost-alessio ({{Fornitore link|civih}}) | ||
* valerio-bozzolan (volunteer) | * valerio-bozzolan (volunteer) | ||
− | |||
Password authentication is not allowed. | Password authentication is not allowed. | ||
Riga 53: | Riga 56: | ||
<pre> | <pre> | ||
− | sudo | + | # fill |
− | sudo adduser | + | USERNAME="" |
+ | SSH_PUB_KEY="" | ||
+ | |||
+ | # add the user without password and set SSH public key | ||
+ | sudo /root/scripts/add-user-with-ssh-key.sh "$USERNAME" "$SSH_PUB_KEY" | ||
+ | |||
+ | # add user in sudoers | ||
+ | sudo adduser "$USERNAME" sudo | ||
</pre> | </pre> | ||
+ | |||
+ | Source code: | ||
+ | |||
+ | * https://gist.github.com/valerio-bozzolan/70e0184478fa0ffa52a37745ac04f333 | ||
== Provision == | == Provision == |
Versione delle 12:25, 2 feb 2022
This is the technical documentation of the server containing CiviCRM development serving these domains:
Production
- URL
- Document root
/var/www/crm/production
- Config
/etc/apache2/sites-available/it-wikimedia-crm-ssl.conf
Testing
- URL
- Document root
/var/www/crm/testing
- Config
/etc/apache2/sites-available/it-wikimedia-crmdev-ssl.conf
Database
Plaintext credentials are stored here:
sudo cat /root/db-credentials.txt
Unix users
Current enabled users with sudo:
- emerald-stefano (
💼 eme
) - civihost-samuele (
💼 civih
) - civihost-stefano (
💼 civih
) - civihost-alessio (
💼 civih
) - valerio-bozzolan (volunteer)
Password authentication is not allowed.
Add Unix user
# fill USERNAME="" SSH_PUB_KEY="" # add the user without password and set SSH public key sudo /root/scripts/add-user-with-ssh-key.sh "$USERNAME" "$SSH_PUB_KEY" # add user in sudoers sudo adduser "$USERNAME" sudo
Source code:
Provision
From a Debian GNU/Linux bullseye (stable) 11:
WMI_SERVER=lessema # upgrade system apt update apt upgrade --yes # install basic webserver and some utilities apt install --yes mariadb-server apache2 libapache2-mod-php certbot git pwgen # install CiviCRM dependencies # https://docs.civicrm.org/installation/en/latest/general/requirements/ apt install --yes php-mysql php-bcmath php-curl php-xml php-zip php-intl php-soap # download upstream configurations git clone http://phabricator.wikimedia.org/diffusion/WIIN/wikimedia-it-wmit-infrastructure.git /etc/wmit-infrastructure # remove default empty stuff mv /etc/apache2/sites-available /etc/apache2/sites-available.legacy mv /etc/apache2/sites-enabled /etc/apache2/sites-enabled.legacy # if the above fail, Apache is not empty. # manually move your stuff in a versioned directory # attach the versioned configuration ln --symbolic /etc/wmit-infrastructure/servers/"$WMI_SERVER"/conf/apache2/sites-available /etc/apache2/sites-available ln --symbolic /etc/wmit-infrastructure/servers/"$WMI_SERVER"/conf/apache2/sites-enabled /etc/apache2/sites-enabled ln --symbolic /etc/wmit-infrastructure/servers/"$WMI_SERVER"/conf/apache2/include /etc/apache2/include # enable useful mods a2enmod ssl a2enmod rewrite a2enmod headers # enable some upstream configurations a2ensite 000-servername a2ensite it-wikimedia-crmdev-txt a2ensite it-wikimedia-crm-txt # reload configuration apachectl graceful # eventually deploy Let's Encrypt certificates certbot certonly --webroot --webroot-path /var/www/html --domain crmdev.wikimedia.it certbot certonly --webroot --webroot-path /var/www/html --domain crm.wikimedia.it # enable upstream SSL configurations a2ensite it-wikimedia-crmdev-ssl a2ensite it-wikimedia-crm-ssl # reload configuration apachectl graceful # create the pathname mkdir --parents /var/www/crm/{production,testing} # generate some DB password CIVI_DB_PROD_PWD=$(pwgen 20 --secure --symbols --remove-chars='$\#`\|"'"'") CIVI_DB_TEST_PWD=$(pwgen 20 --secure --symbols --remove-chars='$\#`\|"'"'") # create dedicated users mysql <<< "CREATE DATABASE civicrm_testing" mysql <<< "CREATE DATABASE civicrm_production" mysql <<< "CREATE USER civicrm_testing@localhost IDENTIFIED BY '$CIVI_DB_TEST_PWD'" mysql <<< "CREATE USER civicrm_production@localhost IDENTIFIED BY '$CIVI_DB_PROD_PWD'" mysql <<< "GRANT ALL PRIVILEGES ON civicrm_testing.* TO civicrm_testing@localhost" mysql <<< "GRANT ALL PRIVILEGES ON civicrm_production.* TO civicrm_production@localhost" # save credentials somewhere echo "civicrm_testing@localhost $CIVI_DB_TEST_PWD" >> /root/db-credentials.txt echo "civicrm_production@localhost $CIVI_DB_PROD_PWD" >> /root/db-credentials.txt
Configuration
Configuration on Phabricator: