Skip to content

Commit 88e0454

Browse files
author
Exploding Labs Bot
committed
Update site from docs source repo
1 parent 2d80d47 commit 88e0454

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

superstack/deploying/index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -655,9 +655,10 @@ <h2 id="3-deploy-the-compose-file">📦 3. Deploy the Compose File</h2>
655655
<h3 id="4-set-secrets">4. Set Secrets</h3>
656656
<p>The stack needs your secrets (passwords, keys, etc.). There are a few options:</p>
657657
<ol>
658-
<li>Put secrets in a <code>.env</code> file on the server (convenient but less secure).</li>
659-
<li>Set environment variables in the the <code>docker compose</code> command, being sure to
660-
disable shell history (inconvenient).</li>
658+
<li>Put secrets in a <code>.env</code> file on the server. Convenient but Less secure. Be
659+
sure to <code>chmod 600 .env</code>.</li>
660+
<li>Set environment variables in the the <code>docker compose</code> command. Inconvenient.
661+
Be sure to disable shell history.</li>
661662
<li>Use environment injection in your CI/CD.</li>
662663
</ol>
663664
<h2 id="5-launch-your-stack">🚀 5. Launch your Stack</h2>

superstack/gettingstarted/index.html

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -698,12 +698,7 @@ <h2 id="2-configure-environment-variables">2. Configure Environment Variables</h
698698
<p>Copy the example environment file:</p>
699699
<div class="highlight"><pre><span></span><code>cp<span class="w"> </span>example.env<span class="w"> </span>.env
700700
</code></pre></div>
701-
<p>This <code>.env</code> file is used to configure:</p>
702-
<ul>
703-
<li><strong>Secrets</strong> – Passwords, keys, etc.</li>
704-
<li><strong>Ports</strong> – Adjust the exposed ports (specifically, Caddy's) depending on
705-
environment or application (you may bring up multiple).</li>
706-
</ul>
701+
<p>This <code>.env</code> file is used to set secrets, passwords, keys, etc.</p>
707702
<blockquote>
708703
<p>⚠️ Never store secrets in version control.</p>
709704
</blockquote>

0 commit comments

Comments
 (0)