Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed [email protected] from instructions making the instruction more copy pasteable #177

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -881,13 +881,13 @@ <h2>Step 5: Install Certificate (<span id="step5_pending">waiting...</span>)</h2
<li>
Copy "chained.pem" and "dhparam.pem" to /etc/ssl/certs/.<br/>
<pre>
scp chained.pem [email protected]:/etc/ssl/certs/chained.pem
scp dhparam.pem [email protected]:/etc/ssl/certs/dhparam.pem
scp chained.pem /etc/ssl/certs/chained.pem
scp dhparam.pem /etc/ssl/certs/dhparam.pem
</pre>
</li>
<li>
Copy "domain.key" /etc/ssl/private/.<br/>
<code>scp domain.key [email protected]:/etc/ssl/private/domain.key</code><br/>
<code>scp domain.key /etc/ssl/private/domain.key</code><br/>
</li>
<li>
Update your webserver config to use https (examples below).<br/>
Expand Down Expand Up @@ -928,13 +928,13 @@ <h2>Step 5: Install Certificate (<span id="step5_pending">waiting...</span>)</h2
<li>
Copy "domain.crt" and "intermediate.pem" to /etc/ssl/certs/.<br/>
<pre>
scp domain.crt [email protected]:/etc/ssl/certs/domain.crt
scp intermediate.pem [email protected]:/etc/ssl/certs/intermediate.pem
scp domain.crt /etc/ssl/certs/domain.crt
scp intermediate.pem /etc/ssl/certs/intermediate.pem
</pre>
</li>
<li>
Copy "domain.key" /etc/ssl/private/.<br/>
<code>scp domain.key [email protected]:/etc/ssl/private/domain.key</code><br/>
<code>scp domain.key /etc/ssl/private/domain.key</code><br/>
</li>
<li>
Update your webserver config to use https (examples below).<br/>
Expand Down