add admin UI documentation, fix title for no-subdomain doc
@@ -23,7 +23,7 @@ Remark42 is a self-hosted, lightweight and simple (yet functional) comment engin
|
||||
* Clean, lightweight and customizable UI with white and dark themes
|
||||
* Multi-site mode from a single instance
|
||||
* Integration with automatic SSL (direct and via [nginx-le](https://github.com/nginx-le/nginx-le))
|
||||
* [Privacy focused](#privacy)
|
||||
* [Privacy focused](https://remark42.com/#privacy)
|
||||
|
||||
[Demo site](https://remark42.com/demo/) available with all authentication methods, including email auth and anonymous access.
|
||||
|
||||
@@ -32,7 +32,7 @@ Remark42 is a self-hosted, lightweight and simple (yet functional) comment engin
|
||||
Comments example:
|
||||

|
||||
|
||||
For admin screenshots see [Admin UI wiki](https://github.com/umputun/remark42/wiki/Admin-UI)
|
||||
For admin screenshots see [Admin UI documentation](https://remark42.com/docs/manuals/admin-interface/)
|
||||
</details>
|
||||
|
||||
All remark42 documentation is available [by the link](https://remark42.com/docs/getting-started/installation/).
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
title: System Requirements
|
||||
---
|
||||
|
||||
In progress...
|
||||
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 206 KiB After Width: | Height: | Size: 206 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
@@ -0,0 +1,18 @@
|
||||
---
|
||||
title: Admin UI
|
||||
---
|
||||
|
||||
Administrators defined by `admin.shared.id` / `$ADMIN_SHARED_ID` and get the following extra control elements:
|
||||
|
||||

|
||||
|
||||
1. **Show settings - lists of blocked and hidden users.**
|
||||

|
||||
|
||||
2. **Disable comments for the post. Can be enabled back anytime.**
|
||||
|
||||
3. **Block user permanently or temporary.**
|
||||

|
||||
|
||||
4. **Delete a comment**
|
||||

|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Configure Instance on Subdomain
|
||||
title: Configure Instance without Subdomain
|
||||
---
|
||||
|
||||
## How to configure remark42 without a subdomain
|
||||
@@ -45,7 +45,7 @@ services:
|
||||
|
||||
The `nginx.conf` would then look something like:
|
||||
|
||||
```
|
||||
```nginx
|
||||
location /remark42/ {
|
||||
rewrite /remark42/(.*) /$1 break;
|
||||
proxy_pass http://remark42:8080/; // use internal docker name of remark42 container for proxy
|
||||
|
||||
@@ -5,10 +5,6 @@
|
||||
{
|
||||
"title": "Installation",
|
||||
"href": "/getting-started/installation/"
|
||||
},
|
||||
{
|
||||
"title": "System Requirements",
|
||||
"href": "/getting-started/system-requirements/"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -45,7 +41,11 @@
|
||||
"section": "Manuals",
|
||||
"children": [
|
||||
{
|
||||
"title": "Subdomain",
|
||||
"title": "Admin UI",
|
||||
"href": "/manuals/admin-interface/"
|
||||
},
|
||||
{
|
||||
"title": "Without subdomain",
|
||||
"href": "/manuals/subdomain/"
|
||||
},
|
||||
{
|
||||
|
||||