Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ root = true
[*]
indent_style = space
indent_size = 2
insert_final_newline = true
end_of_line = lf
insert_final_newline = false
end_of_line = lf
18 changes: 9 additions & 9 deletions exampleSite/content/test-product/tables/examples/n4a-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ type:
## NGINX filesystem restrictions
NGINXaaS for Azure places restrictions on the instance's filesystem; only a specific set of directories are allowed to be read from and written to. Below is a table describing what directories the NGINX worker process can read and write to and what directories files can be written to. These files include certificate files and any files uploaded to the deployment, excluding NGINX configuration files.

{{<bootstrap-table "table table-striped table-bordered">}}
{{<bootstrap-table "table table-striped table-bordered">}}
| Allowed Directory | NGINX worker process can read/write to | Files can be written to |
|------------------ | ----------------- | ----------------- |
| /etc/nginx | | &check; |
| /opt | &check; | &check; |
| /srv | &check; | &check; |
| /tmp | &check; | |
| /var/cache/nginx | &check; | |
| /var/www | &check; | &check; |
|-------------------- | -------------------- | -------------------- |
| /etc/nginx | | {{< icon "check" >}} |
| /opt | {{< icon "check" >}} | {{< icon "check" >}} |
| /srv | {{< icon "check" >}} | {{< icon "check" >}} |
| /tmp | {{< icon "check" >}} | |
| /var/cache/nginx | {{< icon "check" >}} | |
| /var/www | {{< icon "check" >}} | {{< icon "check" >}} |
{{</bootstrap-table>}}

Attempts to access other directories will be denied and result in a `5xx` error.
Expand Down Expand Up @@ -50,4 +50,4 @@ Some directives cannot be overridden by the user provided configuration.
| `master_process` | `on` | This directive is intended for NGINX developers. |
| `worker_cpu_affinity` | `auto` | The value `auto` allows binding worker processes automatically to available CPUs based on the current capacity of the deployment. |

{{</bootstrap-table>}}
{{</bootstrap-table>}}
8 changes: 4 additions & 4 deletions layouts/partials/lucide.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{- /* Usage: */ -}}
{{- /* (dict "context" . "icon" "circle") */ -}}
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" class="lucide" style="{{ .style | safeCSS }}">
{{ with printf "images/lucide-sprite.svg#%s" .icon }}
<use href="{{. | absURL}}"></use>
{{ end }}
</svg>
{{- with printf "images/lucide-sprite.svg#%s" .icon -}}
<use href="{{. | absURL}}"></use>
{{- end -}}
</svg>
Loading