mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 02:01:33 +00:00
41 lines
1.9 KiB
Smarty
Executable File
41 lines
1.9 KiB
Smarty
Executable File
<?php
|
|
|
|
//=========================
|
|
// Config you must change - updated by installer.
|
|
//=========================
|
|
define('DB_SYSTEM', '%%DB_SYSTEM%%');
|
|
define('DB_HOST', '%%DB_HOST%%');
|
|
define('DB_PORT', '%%DB_PORT%%');
|
|
define('DB_SOCKET', '%%DB_SOCKET%%');
|
|
define('DB_USER', '%%DB_USER%%');
|
|
define('DB_PASSWORD', '%%DB_PASSWORD%%');
|
|
define('DB_NAME', '%%DB_NAME%%');
|
|
define('DB_PCONNECT', false);
|
|
|
|
define('NNTP_USERNAME', '%%NNTP_USERNAME%%');
|
|
define('NNTP_PASSWORD', '%%NNTP_PASSWORD%%');
|
|
define('NNTP_SERVER', '%%NNTP_SERVER%%');
|
|
define('NNTP_PORT', '%%NNTP_PORT%%');
|
|
// If you want to use TLS or SSL on the NNTP connection (the NNTP_PORT must be able to support encryption).
|
|
define('NNTP_SSLENABLED', %%NNTP_SSLENABLED%%);
|
|
// If we lose connection to the NNTP server, this is the time in seconds to wait before giving up.
|
|
define('NNTP_SOCKET_TIMEOUT', '%%NNTP_SOCKET_TIMEOUT%%');
|
|
|
|
define('NNTP_USERNAME_A', '%%NNTP_USERNAME_A%%');
|
|
define('NNTP_PASSWORD_A', '%%NNTP_PASSWORD_A%%');
|
|
define('NNTP_SERVER_A', '%%NNTP_SERVER_A%%');
|
|
define('NNTP_PORT_A', '%%NNTP_PORT_A%%');
|
|
define('NNTP_SSLENABLED_A', %%NNTP_SSLENABLED_A%%);
|
|
define('NNTP_SOCKET_TIMEOUT_A', '%%NNTP_SOCKET_TIMEOUT_A%%');
|
|
|
|
// Location to CA bundle file on your system. You can download one here: http://curl.haxx.se/docs/caextract.html
|
|
define('NN_SSL_CAFILE', '%%NN_SSL_CAFILE%%');
|
|
// Path where openssl cert files are stored on your system, this is a fall back if the CAFILE is not found.
|
|
define('NN_SSL_CAPATH', '%%NN_SSL_CAPATH%%');
|
|
// Use the aforementioned CA bundle file to verify remote SSL certificates when connecting to a server using TLS/SSL.
|
|
define('NN_SSL_VERIFY_PEER', '%%NN_SSL_VERIFY_PEER%%');
|
|
// Verify the host is who they say they are.
|
|
define('NN_SSL_VERIFY_HOST', '%%NN_SSL_VERIFY_HOST%%');
|
|
// Allow self signed certificates. Note this does not work on CURL as CURL does not have this option.
|
|
define('NN_SSL_ALLOW_SELF_SIGNED', '%%NN_SSL_ALLOW_SELF_SIGNED%%');
|