diff options
| author | 2021-10-23 13:43:24 +0200 | |
|---|---|---|
| committer | 2021-10-23 13:43:24 +0200 | |
| commit | acbba9adb2e362079ce1fb84be1868b198cc1da0 (patch) | |
| tree | eeeaa9e522f82a9f8f9baaef3b6bd23950eab71a /docs/en/admins/10_ServerConfig.md | |
| parent | dd02c79092aa25cacff1c831815e9ca02b06b620 (diff) | |
Improved markdownlint (#3918)
* Improved markdownlint
* Relaxed rules slighlty
* `npm run markdownlint` for automatic tests
* `npm run markdownlint_fix` for automatic syntax fixing
* Applied the fixes on all our Markdown files
Diffstat (limited to 'docs/en/admins/10_ServerConfig.md')
| -rw-r--r-- | docs/en/admins/10_ServerConfig.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/en/admins/10_ServerConfig.md b/docs/en/admins/10_ServerConfig.md index 5286023f8..6c5823a2d 100644 --- a/docs/en/admins/10_ServerConfig.md +++ b/docs/en/admins/10_ServerConfig.md @@ -1,9 +1,10 @@ # Apache/Nginx Configuration Files ## Apache configuration + This is an example Apache virtual hosts configuration file. It covers HTTP and HTTPS configuration. -``` +```apache <VirtualHost *:80> DocumentRoot /var/www/html/ @@ -62,7 +63,8 @@ This is an example Apache virtual hosts configuration file. It covers HTTP and H This is an example nginx configuration file. It covers HTTP, HTTPS, and php-fpm configuration. You can find simpler config file but they may be incompatible with FreshRSS API. -``` + +```nginx server { listen 80; listen 443 ssl; |
