summaryrefslogtreecommitdiff
path: root/content/basic
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2022-08-07 14:38:49 -0400
committerLuke Smith <luke@lukesmith.xyz>2022-08-07 14:38:49 -0400
commit79404c875dbf20ba783c72b31111c6e2228d28a2 (patch)
tree1a80d0322bf9f81cf26da2204d95c98db854d93b /content/basic
parentef1b2105e344e201e3f92ebece9d28efd58dbcac (diff)
begin rehighlighting of custom info in templates
Diffstat (limited to 'content/basic')
-rw-r--r--content/basic/nginx.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/content/basic/nginx.md b/content/basic/nginx.md
index fb8f15a..3ec3af7 100644
--- a/content/basic/nginx.md
+++ b/content/basic/nginx.md
@@ -25,7 +25,7 @@ bottom here.
Now pull up a terminal and type:
```sh
-ssh root@example.org
+ssh root@{{<hl>}}example.org{{</hl>}}
```
This command will attempt to log into your server. It should prompt you
@@ -73,7 +73,7 @@ paste (with required changes) but I will also explain what the lines do.
Create a file in `/etc/nginx/sites-available` by doing this:
```sh
-nano /etc/nginx/sites-available/mywebsite
+nano /etc/nginx/sites-available/{{<hl>}}mywebsite{{</hl>}}
```
Note that \"nano\" is a command line text editor. You will now be able
@@ -88,8 +88,8 @@ this** will be different depending on what you want to call your site.
server {
listen 80 ;
listen [::]:80 ;
- server_name landchad.net ;
- root /var/www/landchad ;
+ server_name {{<hl>}}example.org{{</hl>}} ;
+ root /var/www/{{<hl>}}mysite{{</hl>}} ;
index index.html index.htm index.nginx-debian.html ;
location / {
try_files $uri $uri/ =404 ;
@@ -129,14 +129,14 @@ ahead and create a little page that will appear on when someone looks up
the domain.
```sh
-mkdir /var/www/landchad
+mkdir /var/www/{{<hl>}}mysite{{</hl>}}
```
Now let\'s create and index file inside of that directory which will
appear when the website is accessed:
```sh
-nano /var/www/landchad/index.html
+nano /var/www/{{<hl>}}mysite{{</hl>}}/index.html
```
I\'ll add the following basic content, but you can add whatever you
@@ -155,7 +155,7 @@ Once you save that file, we can enable it making a link to it in the
`sites-enabled` directory:
```sh
-ln -s /etc/nginx/sites-available/mywebsite /etc/nginx/sites-enabled
+ln -s /etc/nginx/sites-available/{{<hl>}}mywebsite{{</hl>}} /etc/nginx/sites-enabled
```
Now we can just `reload` or `restart` to make `nginx` service the new