oidc-registration-php/INSTALL.txt

77 lines
2.3 KiB
Text
Raw Normal View History

2024-09-08 22:15:10 +00:00
Start with Debian 12
2024-09-13 02:59:04 +00:00
APT-Install git openssl mkcert postgresql nginx vim make python3-pip python3-venv curl sudo
2024-09-08 22:15:10 +00:00
Apt-Install php-bz2 php-curl php-gd php-intl php-mbstring php-mcrypt php-pdo php-pgsql php-xml php-zip
Apt-Install certbot python3-certbot-nginx golang-go
2024-09-13 02:59:04 +00:00
If necessary create a "normal" user and give them "sudo" access in /etc/group
Become that user.
2024-09-08 22:15:10 +00:00
Create a working directory
cmd: cd <Working Directory>
cmd: git clone https://code.cacert.org/cacert/oidc-registration-php.git
cmd: cd oidc-registration-php
cmd: cp cacert.ini.sample cacert.ini
Edit cacert.ini and set the Database User and Password that you wish to use.
Also set the Domain and Host name in the URL variables.
cmd: cd misc
2024-09-13 02:59:04 +00:00
Edit oidc_db_v2.sql and insert the Database User name chosen above in place of "<Your User>".
2024-09-08 22:15:10 +00:00
2024-09-13 02:59:04 +00:00
As Root: cmd: cp oidc_db_v2.sql /var/lib/postgresql
2024-09-08 22:15:10 +00:00
As Root: cmd: su - postgres
2024-09-08 22:39:30 +00:00
cmd: createuser -s -d -e -r -P <DB User> ( Pwd: <DB Password> )
cmd: createdb oidc_db -O <DB User>
2024-09-08 22:15:10 +00:00
cmd: psql oidc_db < oidc_db_v2.sql
Ctrl-D
cmd: cd ..
cmd: mkdir -p $HOME/.local/share/virtualenvs ~/.local/bin
cmd: python3 -m venv $HOME/.local/share/virtualenvs/ansible
cmd: $HOME/.local/share/virtualenvs/ansible/bin/pip install ansible
cmd: ln -s $HOME/.local/share/virtualenvs/ansible/bin/ansible* $HOME/.local/bin/
cmd: export PATH=$HOME/.local/bin:$HOME/go/bin:$PATH
2024-09-13 02:59:04 +00:00
Edit your ~/.profile to include the preceeding PATH changes
cmd: . ~/.profile
2024-09-08 22:15:10 +00:00
cmd: go install github.com/nicksnyder/go-i18n/v2/goi18n@latest
2024-09-13 02:59:04 +00:00
cmd: cd ..
2024-09-08 22:15:10 +00:00
cmd: git clone --recurse-submodules https://code.cacert.org/cacert/oidc-parent.git
cmd: cd oidc-parent
# cause pull, fetch and other git commands to consider submodules
cmd: git config submodule.recurse true
cmd: make
Change into the "deployment" sub-directory
cmd: cd deployment
cmd: ansible-playbook -K 01_install_cacert_oidc.yml
Answer the password question for your user.
2024-09-13 02:59:04 +00:00
cmd: cd ../..
2024-09-08 22:15:10 +00:00
As Root: cmd: certbot --nginx -d <your domain name>
From your working directory, do the following As Root:
cmd: cd oidc-registration-php
cmd: cp -r * /var/www/html
cmd: cp ssl-certs/* /usr/local/share/ca-certficates
cmd: update-ca-certificates -f
cmd: cp misc/reverse-proxy.conf /etc/nginx/conf.d
2024-09-13 02:59:04 +00:00
cmd: ( cd /var/www/html ; mv -i index.html index.html-orig )
2024-09-08 22:15:10 +00:00
Once you are finished, you may change the Background Image, the Logo and the Favicon, as you wish.