From ec0e77cc5af2279df199376968ca1f781ecfb4e9 Mon Sep 17 00:00:00 2001 From: Matt John Date: Mon, 27 Feb 2023 18:47:23 +0000 Subject: [PATCH 1/2] Remove unecessary 'cd' during download of nginx config in linux selfhost setup --- docs/self-hosting/deployments/linux.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/self-hosting/deployments/linux.mdx b/docs/self-hosting/deployments/linux.mdx index 771a4104a..4f7fa05f3 100644 --- a/docs/self-hosting/deployments/linux.mdx +++ b/docs/self-hosting/deployments/linux.mdx @@ -33,8 +33,7 @@ wget -O .env https://raw.githubusercontent.com/Infisical/infisical/main/.env.exa wget -O docker-compose.yml https://raw.githubusercontent.com/Infisical/infisical/main/docker-compose.yml # Download nginx config -mkdir nginx && cd nginx && wget -O default.conf https://raw.githubusercontent.com/Infisical/infisical/main/nginx/default.dev.conf -cd .. +mkdir nginx && wget -O ./nginx/default.conf https://raw.githubusercontent.com/Infisical/infisical/main/nginx/default.dev.conf ``` 3. Tweak the `.env` according to your preferences. Refer to the available [environment variables](../../self-hosting/configuration/envars) From 00a07fd27c32d3e682d07cb5376753062b32e35d Mon Sep 17 00:00:00 2001 From: Matt John Date: Mon, 27 Feb 2023 18:47:59 +0000 Subject: [PATCH 2/2] Correct port in linux selfhost setup --- docs/self-hosting/deployments/linux.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/self-hosting/deployments/linux.mdx b/docs/self-hosting/deployments/linux.mdx index 4f7fa05f3..d7490f870 100644 --- a/docs/self-hosting/deployments/linux.mdx +++ b/docs/self-hosting/deployments/linux.mdx @@ -50,4 +50,4 @@ nano .env docker-compose -f docker-compose.yml up -d ``` -5. Your Infisical installation is complete and should be running on [http://localhost:8080](http://localhost:8080). Please note that the containers are not exposed to the internet and only bind to the localhost. It's up to you to configure a firewall, SSL certificates, and implement any additional security measures. +5. Your Infisical installation is complete and should be running on [http://localhost:80](http://localhost:80). Please note that the containers are not exposed to the internet and only bind to the localhost. It's up to you to configure a firewall, SSL certificates, and implement any additional security measures.