forked from SynoCommunity/spksrc
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c5e190
commit 742028a
Showing
6 changed files
with
72 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
wallabag-2.2.3.tar.gz SHA1 496e6c7d980c078e42d3bab7b0e978bd0af02b96 | ||
wallabag-2.2.3.tar.gz SHA256 13fe5cb7cfc741abee08312f0055e9549e60590daff2fac41be5266f7956d857 | ||
wallabag-2.2.3.tar.gz MD5 63f4cc85397fd6db3e0e3d5f3fa11e02 | ||
wallabag-2.3.8.tar.gz SHA1 0a925de3170b8817fb556f82226bd7c7c3c5aabe | ||
wallabag-2.3.8.tar.gz SHA256 58f319ee41828fcc4fd00a14c4ac7c16b2179a47af21e257a15938311d1426eb | ||
wallabag-2.3.8.tar.gz MD5 b5f61f50aad1c60d34ad3a3b8848b29c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,64 @@ | ||
parameters: | ||
database_driver: pdo_mysql | ||
database_driver_class: ~ | ||
database_host: 127.0.0.1 | ||
database_port: 3306 | ||
database_name: @database_name@ | ||
database_user: wallabag | ||
database_password: @database_password@ | ||
# For SQLite, database_path should be "%kernel.project_dir%/data/db/wallabag.sqlite" | ||
database_path: null | ||
database_table_prefix: wallabag_ | ||
database_socket: null | ||
# with PostgreSQL and SQLite, you must set "utf8" | ||
database_charset: utf8mb4 | ||
mailer_transport: smtp | ||
mailer_host: 127.0.0.1 | ||
mailer_user: null | ||
mailer_password: null | ||
|
||
domain_name: localhost | ||
|
||
mailer_transport: smtp | ||
mailer_user: ~ | ||
mailer_password: ~ | ||
mailer_host: 127.0.0.1 | ||
mailer_port: false | ||
mailer_encryption: ~ | ||
mailer_auth_mode: ~ | ||
|
||
locale: en | ||
|
||
# A secret key that's used to generate certain security-related tokens | ||
secret: @wallabag_secret@ | ||
twofactor_auth: false | ||
|
||
locale: en | ||
|
||
# two factor stuff | ||
twofactor_auth: true | ||
twofactor_sender: no-reply@wallabag.org | ||
|
||
# fosuser stuff | ||
fosuser_registration: true | ||
fosuser_confirmation: false | ||
fosuser_confirmation: true | ||
|
||
# how long the access token should live in seconds for the API | ||
fos_oauth_server_access_token_lifetime: 3600 | ||
# how long the refresh token should life in seconds for the API | ||
fos_oauth_server_refresh_token_lifetime: 1209600 | ||
|
||
from_email: no-reply@wallabag.org | ||
|
||
rss_limit: 50 | ||
# RabbitMQ processing | ||
rabbitmq_host: localhost | ||
rabbitmq_port: 5672 | ||
rabbitmq_user: guest | ||
rabbitmq_password: guest | ||
rabbitmq_prefetch_count: 10 | ||
|
||
# Redis processing | ||
redis_scheme: tcp | ||
redis_host: localhost | ||
redis_port: 6379 | ||
redis_path: null | ||
redis_password: null | ||
sites_credentials: { } | ||
|
||
# sentry logging | ||
sentry_dsn: ~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters