]> BookStack Code Mirror - website/blobdiff - content/docs/admin/multi-instance.md
Improved code highlighting using codemirror
[website] / content / docs / admin / multi-instance.md
index da7203ff3cbfe56b260da089df8bc6a4d1aee2bd..08684371e4d651637dcf1e68a941c6c38cf1d628 100644 (file)
@@ -57,22 +57,22 @@ For Nginx you will need to define a server for each BookStack instance you want
 By default, server definitions are stored in the `/etc/nginx/sites-available/` directory. Create a new file here, with a sensible name, for each BookStack instance you want to set up. Use the following configuration as a guide:
 
 
-```
+```nginx
 # /etc/nginx/sites-available/user-docs.conf
 
 server {
     listen 80;
     listen [::]:80;
-    
+
     root /var/www/user-docs/public;
     index index.php;
-    
+
     server_name user-docs.example.com;
-    
+
     location / {
         try_files $uri $uri/ /index.php?$query_string;
     }
-    
+
     location ~ \.php$ {
         try_files $uri /index.php =404;
         fastcgi_split_path_info ^(.+\.php)(/.+)$;