Skip to content

Commit a1fb54c

Browse files
committed
Before Translating
1 parent 0528d65 commit a1fb54c

File tree

11 files changed

+764
-0
lines changed

11 files changed

+764
-0
lines changed

frontend/check-locales.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

2324
const ignoreUnused = [

frontend/src/locale/IntlProvider.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import langRu from "./lang/ru.json";
1111
import langSk from "./lang/sk.json";
1212
import langVi from "./lang/vi.json";
1313
import 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

3234
const loadMessages = (locale?: string): typeof langList & typeof langEn => {
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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";

0 commit comments

Comments
 (0)