Deploying PrestaShop with NGINX and SSL on AWS EKS  [draft]

This is a file that contains cmd i run in terminal Update kubeconfig aws eks update-kubeconfig --region eu-central-1 --name myr-eks Aws get user, to check if the user is the one we expect aws iam get-user Verify Configuration kubectl get nodes Add & update Helm Repo helm repo add jetstack https://charts.jetstack.io && helm repo update Install cert-manager helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace -f oc-cert-manager-values.yaml Expected output for cluster-issuers...

September 26, 2024 · Marcin M

PrestaShop With Nginx  [draft]

Useful links:

September 26, 2024 · Marcin M

Install NGINX on Debian Ubuntu

To get started with NGINX Open Source or NGINX Plus, you first need to install it on a system and learn some basics. Installing on Debian/Ubuntu Create a file named /etc/apt/sources.list.d/nginx.list that contains the following contents: sudo nano /etc/apt/sources.list.d/nginx.list content of nginx.list deb http://nginx.org/packages/mainline/OS/ CODENAME nginx deb-src http://nginx.org/packages/mainline/OS/ CODENAME nginx check you system OS and CODENAME lsb_release -a the file nginx.list should be look like below # comment deb http://nginx.org/packages/mainline/ubuntu/ focal nginx deb-src http://nginx....

June 25, 2022 · Marcin M