This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Steps to install Nextcloud AIO with selfsigned (adapt if you have custom PKI): | |
| #generate certificate & unprotected key | |
| mkdir /opt/reverseproxy && cd /opt/reverseproxy | |
| openssl x509 -req -days 365 -in self-ssl.csr -signkey self-ssl.key.pem -out self-ssl.pem | |
| # Follow https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md#apache for Apache conf (paste their vhost conf within /usr/local/apache2/conf/httpd.conf, put your SSL cert and key within the docker and adapt the corresponding line) | |
| SSLCertificateFile /usr/local/apache2/conf/self-ssl.pem |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ##docker : sudo docker run -d --name squid-container -e TZ=UTC -p 10.x.x.x:3128:3128 --restart always -v /home/username/squid/squid.conf:/etc/squid/squid.conf ubuntu/squid | |
| ##squid.conf: | |
| #remove squid header indications | |
| via off | |
| forwarded_for off | |
| header_access From deny all | |
| header_access Server deny all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dm-verity disabler got me into boot freeze. all you need to avoid "Required key not available" is to remove "session optional pam_keyinit.so force revoke" from : | |
| /etc/pam.d/su-l | |
| /etc/pam.d/login | |
| /etc/pam.d/runuser-l | |
| /etc/pam.d/sshd | |
| FULL PROCESS: | |
| # ROOT PHONE |