ubuntu let's encrypt mysql nginx jira Jira 8 setup with nginx, let's encrypt and mysql under ubuntu 20.04 Start by installing nginx apt install nginx-full Nginx virtualhost setup vi /etc/nginx/sites-available/yourowndomain server { server_name CHANGE_THIS_with_YOUROWNDOMAIN; client_max_body_size 50M; location / { proxy_pass htt... Read more → 8th Dec 2021
let's encrypt mysql nginx ubuntu 22.04 jira Jira 8 setup with nginx, let's encrypt and mysql under ubuntu 22.04 Start by installing nginx apt install nginx-full Nginx virtualhost setup vi /etc/nginx/sites-available/yourowndomain server { server_name CHANGE_THIS_with_YOUROWNDOMAIN; client_max_body_size 50M; location / { proxy_pass htt... Read more → 4th Jan 2023
ubuntu let's encrypt mysql nginx jira Jira setup with nginx, let's encrypt and mysql under ubuntu 18.04 Start by installing nginx apt install nginx-full Nginx virtualhost setup vi /etc/nginx/sites-available/yourowndomain server { server_name CHANGE_THIS_with_YOUROWNDOMAIN; client_max_body_size 50M; location / { proxy_pass htt... Read more → 8th Dec 2021
let's encrypt ami linux 2018 Let's encrypt certbot nginx on Amazon Linux AMI 2018 There is no certbot rpm package available for ami linux 2018 and certbot python package requires least python 3.6. This example first installs python 3.6, updates pip3 and then installs certbot. Default AMI 2018 python 2.7 is kept and no mixup Install python 3.6 yum install python36-pip This w... Read more → 4th Jan 2023
ubuntu let's encrypt nginx Nginx let's encrypt with A+ SSL on ubuntu There are two modes when you don't want Certbot to edit your configuration: Standalone: replaces the webserver to respond to ACME challenges Webroot: needs your webserver to serve challenges from a known folder. Webroot is better because it doesn't need to replace Nginx (to bind to port... Read more → 6th Mar 2019
ubuntu let's encrypt pureftp Pure-ftp setup (inlcuding virtualusers and letsencrypt) under ubuntu Install pure-ftp apt-get update apt-get install pure-ftpd Ensure File /etc/inetd.conf has ftp commented out File /etc/default/pure-ftpd-common STANDALONE_OR_INETD=standalone Add ftp users group groupadd ftpusers Add ftp user - ftpuser or any other id as preferred useradd -g ftpusers -d... Read more → 26th May 2019