Skip to content
Permalink
Browse files
add admin UI documentation, fix title for no-subdomain doc
  • Loading branch information
Dmitry Verkhoturov authored and Umputun committed Feb 24, 2022
1 parent cfb7361 commit d47133c00449c32d407762e7c76e31f5cb5b7cd9
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 14 deletions.
@@ -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:
![](screenshots/comments.png)

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/).

This file was deleted.

File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
@@ -0,0 +1,18 @@
---
title: Admin UI
---

Administrators defined by `admin.shared.id` / `$ADMIN_SHARED_ID` and get the following extra control elements:

![Admin interface](images/admin-primary.png)

1. **Show settings - lists of blocked and hidden users.**
![Blocker and hidden users](images/admin-settings.png)

2. **Disable comments for the post. Can be enabled back anytime.**

3. **Block user permanently or temporary.**
![Block users](images/admin-blocking.png)

4. **Delete a comment**
![Delete a comment](images/admin-delete.png)
@@ -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/"
},
{

0 comments on commit d47133c

Please sign in to comment.