hugo-site/content/posts/2021/configure-nginx.md

33 lines
567 B
Markdown
Raw Normal View History

2021-10-31 15:18:54 +01:00
---
2021-11-26 18:51:05 +01:00
title: "Setting up a NGINX configuration 🧩"
2021-10-31 15:18:54 +01:00
date: 2021-10-31T15:08:33+01:00
draft: false
toc: false
images:
tags:
2021-11-26 18:51:05 +01:00
- website
- config
- nginx
2021-10-31 15:18:54 +01:00
---
This is a test
2021-11-26 18:51:05 +01:00
```bash
nginx
├── conf.d
│   ├── hugo.conf
│   ├── leene.robots
│   ├── leene.ssl
│ └── ...
├── nginx.conf
├── sites-available
│   ├── lieuwe
│ └── ...
├── sites-enabled
│   ├── 0root
│   ├── lieuwe -> ../sites-available/lieuwe
│ └── ...
├── nginx.conf
└── ...
```