mirror of
https://github.com/hnhx/librex.git
synced 2025-04-29 14:09:27 -04:00
refactor: solve invalid quotes params
This commit is contained in:
parent
8d227132fe
commit
6c38e14510
2 changed files with 9 additions and 5 deletions
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
return (object) array(
|
||||
"google_domain" => "${CONFIG_GOOGLE_DOMAIN}",
|
||||
"google_language" => "${CONFIG_GOOGLE_LANGUAGE}",
|
||||
"google_domain" => ${CONFIG_GOOGLE_DOMAIN},
|
||||
"google_language" => ${CONFIG_GOOGLE_LANGUAGE},
|
||||
"invidious_instance_for_video_results" => "${CONFIG_INVIDIOUS_INSTANCE}",
|
||||
|
||||
"wikipedia_language" => "${CONFIG_WIKIPEDIA_LANGUAGE}",
|
||||
"wikipedia_language" => ${CONFIG_WIKIPEDIA_LANGUAGE},
|
||||
|
||||
"disable_bittorent_search" => ${CONFIG_DISABLE_BITTORRENT_SEARCH},
|
||||
"bittorent_trackers" => "${CONFIG_BITTORRENT_TRACKERS}",
|
||||
|
@ -21,8 +21,8 @@
|
|||
"proxitok" => "${APP_PROXITOK}", // tiktok
|
||||
"wikiless" => "${APP_WIKILESS}", // wikipedia
|
||||
"quetre" => "${APP_QUETRE}", // quora
|
||||
"libremdb" => "${APP_LIBREMDB}", // imdb,
|
||||
"breezewiki" => "${APP_BREEZEWIKI}", // fandom,
|
||||
"libremdb" => "${APP_LIBREMDB}", // imdb
|
||||
"breezewiki" => "${APP_BREEZEWIKI}", // fandom
|
||||
"anonymousoverflow" => "${APP_ANONYMOUS_OVERFLOW}", // stackoverflow
|
||||
|
||||
"curl_settings" => array(
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Install Nginx with FastCGI enabled, optimizing its performance for serving content
|
||||
RUN apk add nginx
|
||||
|
||||
# Forward request and error logs to docker log collector
|
||||
RUN ln -sf /dev/stdout /var/log/nginx/access.log &&\
|
||||
ln -sf /dev/stderr /var/log/nginx/error.log
|
||||
|
||||
# After executing the 'docker run' command, run the 'prepare.sh' script
|
||||
CMD [ "/bin/sh", "-c", "docker/server/prepare.sh" ]
|
||||
|
|
Loading…
Add table
Reference in a new issue