suds => snopes
This commit is contained in:
parent
e4178913bd
commit
2283a4fee8
5 changed files with 16 additions and 0 deletions
|
@ -105,6 +105,12 @@
|
|||
"project_url" => "https://github.com/httpjamesm/AnonymousOverflow#clearnet-instances",
|
||||
"original_name" => "StackOverflow",
|
||||
"original_url" => "stackoverflow.com"
|
||||
),
|
||||
"suds" => array(
|
||||
"instance_url" => "",
|
||||
"project_url" => "https://git.vern.cc/cobra/Suds/src/branch/main/instances.json",
|
||||
"original_name" => "Suds",
|
||||
"original_url" => "snopes.com"
|
||||
)
|
||||
),
|
||||
|
||||
|
|
|
@ -119,6 +119,7 @@ This docker image was developed with high configurability in mind, so here is th
|
|||
| APP_LIBREMDB | "" | string | Integration with external self-hosted apps, configure the desired host. |
|
||||
| APP_BREEZEWIKI | "" | string | Integration with external self-hosted apps, configure the desired host. |
|
||||
| APP_ANONYMOUS_OVERFLOW | "" | string | Integration with external self-hosted apps, configure the desired host. |
|
||||
| APP_SUDS | "" | string | Integration with external self-hosted apps, configure the desired host. |
|
||||
|
||||
<br>
|
||||
|
||||
|
|
|
@ -46,6 +46,7 @@ export APP_QUETRE=${APP_QUETRE:-""}
|
|||
export APP_LIBREMDB=${APP_LIBREMDB:-""}
|
||||
export APP_BREEZEWIKI=${APP_BREEZEWIKI:-""}
|
||||
export APP_ANONYMOUS_OVERFLOW=${APP_ANONYMOUS_OVERFLOW:-""}
|
||||
export APP_SUDS=${APP_SUDS:-""}
|
||||
|
||||
# GNU/Curl configurations. Leave 'CURLOPT_PROXY' blank whether you don't need to use a proxy for requests
|
||||
# Generally, a proxy is needed when your IP address is blocked by search engines in response to multiple requests within a short time frame. In these cases, it is recommended to use rotating proxies
|
||||
|
|
|
@ -91,7 +91,14 @@
|
|||
"project_url" => "https://github.com/httpjamesm/AnonymousOverflow#clearnet-instances",
|
||||
"original_name" => "StackOverflow",
|
||||
"original_url" => "stackoverflow.com"
|
||||
),
|
||||
"suds" => array(
|
||||
"instance_url" => "${APP_SUDS}",
|
||||
"project_url" => "https://git.vern.cc/cobra/Suds/src/branch/main/instances.json",
|
||||
"original_name" => "Suds",
|
||||
"original_url" => "snopes.com"
|
||||
)
|
||||
|
||||
),
|
||||
|
||||
"curl_settings" => array(
|
||||
|
|
|
@ -34,6 +34,7 @@ ENV APP_QUETRE=""
|
|||
ENV APP_LIBREMDB=""
|
||||
ENV APP_BREEZEWIKI=""
|
||||
ENV APP_ANONYMOUS_OVERFLOW=""
|
||||
ENV APP_SUDS=""
|
||||
|
||||
# GNU/Curl configurations. Leave 'CURLOPT_PROXY' blank whether you don't need to use a proxy for requests
|
||||
# Generally, a proxy is needed when your IP address is blocked by search engines in response to multiple requests within a short time frame. In these cases, it is recommended to use rotating proxies
|
||||
|
|
Loading…
Reference in a new issue