Skip to content

Commit 3e912a7

Browse files
committedMay 20, 2020
Added FAQ to docs
1 parent 0d726a1 commit 3e912a7

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed
 

‎docs/.vuepress/config.js

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ module.exports = {
4747
["/screenshots/", "Screenshots"],
4848
["/setup/", "Setup Instructions"],
4949
["/advanced-config/", "Advanced Configuration"],
50+
["/faq/", "Frequently Asked Questions"],
5051
["/third-party/", "Third Party"]
5152
]
5253
}

‎docs/advanced-config/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Advanced Configuration
22

3-
### Disabling IPv6
3+
## Disabling IPv6
44

55
On some docker hosts IPv6 may not be enabled. In these cases, the following message may be seen in the log:
66

@@ -14,7 +14,7 @@ The easy fix is to add a Docker environment variable to the Nginx Proxy Manager
1414
```
1515
1616
17-
### Custom Nginx Configurations
17+
## Custom Nginx Configurations
1818
1919
If you are a more advanced user, you might be itching for extra Nginx customizability.
2020
@@ -33,7 +33,7 @@ You can add your custom configuration snippet files at `/data/nginx/custom` as f
3333
Every file is optional.
3434

3535

36-
### X-FRAME-OPTIONS Header
36+
## X-FRAME-OPTIONS Header
3737

3838
You can configure the [`X-FRAME-OPTIONS`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options) header
3939
value by specifying it as a Docker environment variable. The default if not specified is `deny`.

‎docs/faq/README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# FAQ
2+
3+
## Do I have to use Docker?
4+
5+
Yes, that's how this project is packaged.
6+
7+
This makes it easier to support the project when I have control over the version of Nginx and NodeJS
8+
being used. In future this could change if the backend was no longer using NodeJS and it's long list
9+
of dependencies.
10+
11+
12+
## Can I run it on a Raspberry Pi?
13+
14+
Yes! The docker image is multi-arch and is built for a variety of architectures. If yours is
15+
[not listed](https://hub.docker.com/r/jc21/nginx-proxy-manager/tags) please open a
16+
[GitHub issue](https://github.com/jc21/nginx-proxy-manager/issues/new?assignees=&labels=enhancement&template=feature_request.md&title=).

‎docs/setup/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ The docker images support the following architectures:
103103
The docker images are a manifest of all the architecture docker builds supported, so this means
104104
you don't have to worry about doing anything special and you can follow the common instructions above.
105105

106-
Check out the [dockerhub tags](https://cloud.docker.com/repository/registry-1.docker.io/jc21/nginx-proxy-manager/tags)
106+
Check out the [dockerhub tags](https://hub.docker.com/r/jc21/nginx-proxy-manager/tags)
107107
for a list of supported architectures and if you want one that doesn't exist,
108108
[create a feature request](https://github.com/jc21/nginx-proxy-manager/issues/new?assignees=&labels=enhancement&template=feature_request.md&title=).
109109

0 commit comments

Comments
 (0)
Please sign in to comment.