File tree Expand file tree Collapse file tree 11 files changed +764
-0
lines changed
Expand file tree Collapse file tree 11 files changed +764
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ const allLocales = [
1818[ "sk" , "sk-SK" ] ,
1919[ "vi" , "vi-VN" ] ,
2020[ "zh" , "zh-CN" ] ,
21+ [ "bg" , "bg-BG" ] ,
2122] ;
2223
2324const ignoreUnused = [
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import langRu from "./lang/ru.json";
1111import langSk from "./lang/sk.json" ;
1212import langVi from "./lang/vi.json" ;
1313import langZh from "./lang/zh.json" ;
14+ import langBg from "./lang/bg.json" ;
1415
1516// first item of each array should be the language code,
1617// not the country code
@@ -27,6 +28,7 @@ const localeOptions = [
2728[ "sk" , "sk-SK" , langSk ] ,
2829[ "vi" , "vi-VN" , langVi ] ,
2930[ "zh" , "zh-CN" , langZh ] ,
31+ [ "bg" , "bg-BG" , langBg ] ,
3032] ;
3133
3234const loadMessages = ( locale ?: string ) : typeof langList & typeof langEn => {
Original file line number Diff line number Diff line change 1+ ## What is an Access List?
2+
3+ Access Lists provide a blacklist or whitelist of specific client IP addresses along with authentication for the Proxy Hosts via Basic HTTP Authentication.
4+
5+ You can configure multiple client rules, usernames and passwords for a single Access List and then apply that to one or more _ Proxy Hosts_ .
6+
7+ This is most useful for forwarded web services that do not have authentication mechanisms built in or when you want to protect from unknown clients.
Original file line number Diff line number Diff line change 1+ ## Certificates Help
2+
3+ ### HTTP Certificate
4+
5+ A HTTP validated certificate means Let's Encrypt servers will
6+ attempt to reach your domains over HTTP (not HTTPS!) and if successful, they
7+ will issue your certificate.
8+
9+ For this method, you will have to have a _ Proxy Host_ created for your domains(s) that
10+ is accessible with HTTP and pointing to this Nginx installation. After a certificate
11+ has been given, you can modify the _ Proxy Host_ to also use this certificate for HTTPS
12+ connections. However, the _ Proxy Host_ will still need to be configured for HTTP access
13+ in order for the certificate to renew.
14+
15+ This process _ does not_ support wildcard domains.
16+
17+ ### DNS Certificate
18+
19+ A DNS validated certificate requires you to use a DNS Provider plugin. This DNS
20+ Provider will be used to create temporary records on your domain and then Let's
21+ Encrypt will query those records to be sure you're the owner and if successful, they
22+ will issue your certificate.
23+
24+ You do not need a _ Proxy Host_ to be created prior to requesting this type of
25+ certificate. Nor do you need to have your _ Proxy Host_ configured for HTTP access.
26+
27+ This process _ does_ support wildcard domains.
28+
29+ ### Custom Certificate
30+
31+ Use this option to upload your own SSL Certificate, as provided by your own
32+ Certificate Authority.
Original file line number Diff line number Diff line change 1+ ## What is a 404 Host?
2+
3+ A 404 Host is simply a host setup that shows a 404 page.
4+
5+ This can be useful when your domain is listed in search engines and you want
6+ to provide a nicer error page or specifically to tell the search indexers that
7+ the domain pages no longer exist.
8+
9+ Another benefit of having this host is to track the logs for hits to it and
10+ view the referrers.
Original file line number Diff line number Diff line change 1+ ## What is a Proxy Host?
2+
3+ A Proxy Host is the incoming endpoint for a web service that you want to forward.
4+
5+ It provides optional SSL termination for your service that might not have SSL support built in.
6+
7+ Proxy Hosts are the most common use for the Nginx Proxy Manager.
Original file line number Diff line number Diff line change 1+ ## What is a Redirection Host?
2+
3+ A Redirection Host will redirect requests from the incoming domain and push the
4+ viewer to another domain.
5+
6+ The most common reason to use this type of host is when your website changes
7+ domains but you still have search engine or referrer links pointing to the old domain.
Original file line number Diff line number Diff line change 1+ ## What is a Stream?
2+
3+ A relatively new feature for Nginx, a Stream will serve to forward TCP/UDP
4+ traffic directly to another computer on the network.
5+
6+ If you're running game servers, FTP or SSH servers this can come in handy.
Original file line number Diff line number Diff line change 1+ export * as AccessLists from "./AccessLists.md" ;
2+ export * as Certificates from "./Certificates.md" ;
3+ export * as DeadHosts from "./DeadHosts.md" ;
4+ export * as ProxyHosts from "./ProxyHosts.md" ;
5+ export * as RedirectionHosts from "./RedirectionHosts.md" ;
6+ export * as Streams from "./Streams.md" ;
You can’t perform that action at this time.
0 commit comments