2015-05-04 19:52:53 +00:00
|
|
|
from orchestra.contrib.settings import Setting
|
|
|
|
from orchestra.settings import ORCHESTRA_BASE_DOMAIN
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
from .. import webapps
|
2015-03-31 12:39:08 +00:00
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2016-02-17 12:32:30 +00:00
|
|
|
_names = ('home', 'user', 'user_id', 'group', 'app_type', 'app_name', 'app_type', 'app_id', 'account_id')
|
|
|
|
_php_names = _names + ('php_version', 'php_version_number', 'php_version_int')
|
2015-04-27 14:54:17 +00:00
|
|
|
_python_names = _names + ('python_version', 'python_version_number',)
|
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_BASE_DIR = Setting('WEBAPPS_BASE_DIR',
|
2015-04-27 14:54:17 +00:00
|
|
|
'%(home)s/webapps/%(app_name)s',
|
|
|
|
help_text="Available fromat names: <tt>%s</tt>" % ', '.join(_names),
|
|
|
|
validators=[Setting.string_format_validator(_names)],
|
2015-03-31 12:39:08 +00:00
|
|
|
)
|
2015-03-11 16:32:33 +00:00
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_FPM_LISTEN = Setting('WEBAPPS_FPM_LISTEN',
|
2016-02-17 12:32:30 +00:00
|
|
|
'127.0.0.1:5%(app_id)04d',
|
|
|
|
help_text=("TCP socket example: <tt>127.0.0.1:5%(app_id)04d</tt><br>"
|
|
|
|
"UDS example: <tt>/var/lib/php/sockets/%(user)s-%(app_name)s.sock</tt><br>"
|
|
|
|
"Merged TCP example: <tt>127.0.0.1:%(php_version_int)02d%(account_id)03d</tt></br>"
|
|
|
|
"Merged UDS example: <tt>/var/lib/php/sockets/%(user)s-%(php_version)s.sock</tt></br>"
|
2015-04-27 14:54:17 +00:00
|
|
|
"Available fromat names: <tt>{}</tt>").format(', '.join(_php_names)),
|
|
|
|
validators=[Setting.string_format_validator(_php_names)],
|
2015-03-10 11:46:48 +00:00
|
|
|
)
|
2014-10-14 13:50:19 +00:00
|
|
|
|
2015-04-16 13:15:21 +00:00
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_FPM_DEFAULT_MAX_CHILDREN = Setting('WEBAPPS_FPM_DEFAULT_MAX_CHILDREN',
|
2015-04-09 14:32:10 +00:00
|
|
|
3
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_PHPFPM_POOL_PATH = Setting('WEBAPPS_PHPFPM_POOL_PATH',
|
2015-06-12 12:17:05 +00:00
|
|
|
'/etc/php%(php_version_number)s/fpm/pool.d/%(user)s-%(app_name)s.conf',
|
2015-04-27 14:54:17 +00:00
|
|
|
help_text="Available fromat names: <tt>%s</tt>" % ', '.join(_php_names),
|
|
|
|
validators=[Setting.string_format_validator(_php_names)],
|
2015-04-16 13:15:21 +00:00
|
|
|
)
|
2014-10-14 13:50:19 +00:00
|
|
|
|
2015-06-22 14:14:16 +00:00
|
|
|
WEBAPPS_PHPFPM_RELOAD_POOL = Setting('WEBAPPS_PHPFPM_RELOAD_POOL',
|
|
|
|
'service php5-fpm reload'
|
|
|
|
)
|
|
|
|
|
2014-10-14 13:50:19 +00:00
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_FCGID_WRAPPER_PATH = Setting('WEBAPPS_FCGID_WRAPPER_PATH',
|
2015-04-27 12:24:17 +00:00
|
|
|
'/home/httpd/fcgi-bin.d/%(user)s/%(app_name)s-wrapper',
|
2015-04-27 14:54:17 +00:00
|
|
|
validators=[Setting.string_format_validator(_php_names)],
|
2015-04-27 12:24:17 +00:00
|
|
|
help_text=("Inside SuExec Document root.<br>"
|
2015-04-27 14:54:17 +00:00
|
|
|
"Make sure all account wrappers are in the same DIR.<br>"
|
|
|
|
"Available fromat names: <tt>%s</tt>") % ', '.join(_php_names),
|
2015-03-31 12:39:08 +00:00
|
|
|
)
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_FCGID_CMD_OPTIONS_PATH = Setting('WEBAPPS_FCGID_CMD_OPTIONS_PATH',
|
2015-04-27 12:24:17 +00:00
|
|
|
'/etc/apache2/fcgid-conf/%(user)s-%(app_name)s.conf',
|
2015-04-27 14:54:17 +00:00
|
|
|
validators=[Setting.string_format_validator(_php_names)],
|
|
|
|
help_text="Loaded by Apache. Available fromat names: <tt>%s</tt>" % ', '.join(_php_names),
|
2015-03-31 12:39:08 +00:00
|
|
|
)
|
2015-03-10 16:57:23 +00:00
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_PHP_MAX_REQUESTS = Setting('WEBAPPS_PHP_MAX_REQUESTS',
|
2015-04-27 12:24:17 +00:00
|
|
|
400,
|
|
|
|
help_text='Greater or equal to your <a href="http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html#examples">FcgidMaxRequestsPerProcess</a>'
|
2015-04-02 16:14:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-04-27 14:54:17 +00:00
|
|
|
WEBAPPS_PHP_ERROR_LOG_PATH = Setting('WEBAPPS_PHP_ERROR_LOG_PATH',
|
|
|
|
''
|
|
|
|
)
|
2015-03-10 16:57:23 +00:00
|
|
|
|
2015-03-12 14:05:23 +00:00
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_MERGE_PHP_WEBAPPS = Setting('WEBAPPS_MERGE_PHP_WEBAPPS',
|
2015-04-27 12:24:17 +00:00
|
|
|
False,
|
|
|
|
help_text=("Combine all fcgid-wrappers/fpm-pools into one per account-php_version "
|
|
|
|
"to better control num processes per account and save memory")
|
|
|
|
)
|
2015-03-20 15:13:08 +00:00
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_TYPES = Setting('WEBAPPS_TYPES', (
|
|
|
|
'orchestra.contrib.webapps.types.php.PHPApp',
|
|
|
|
'orchestra.contrib.webapps.types.misc.StaticApp',
|
|
|
|
'orchestra.contrib.webapps.types.misc.WebalizerApp',
|
|
|
|
'orchestra.contrib.webapps.types.misc.SymbolicLinkApp',
|
|
|
|
'orchestra.contrib.webapps.types.wordpress.WordPressApp',
|
2016-02-10 12:07:55 +00:00
|
|
|
'orchestra.contrib.webapps.types.moodle.MoodleApp',
|
2015-04-26 13:53:00 +00:00
|
|
|
'orchestra.contrib.webapps.types.python.PythonApp',
|
|
|
|
),
|
|
|
|
# lazy loading
|
2016-02-09 12:17:42 +00:00
|
|
|
choices=lambda : ((t.get_class_path(), t.get_class_path()) for t in webapps.types.AppType.get_plugins(all=True)),
|
2015-04-26 13:53:00 +00:00
|
|
|
multiple=True,
|
|
|
|
)
|
2015-03-11 16:32:33 +00:00
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_PHP_VERSIONS = Setting('WEBAPPS_PHP_VERSIONS', (
|
2015-06-12 12:17:05 +00:00
|
|
|
('5.6-fpm', 'PHP 5.6 FPM'),
|
|
|
|
('5.6-cgi', 'PHP 5.6 FCGID'),
|
2015-04-27 12:24:17 +00:00
|
|
|
('5.4-fpm', 'PHP 5.4 FPM'),
|
|
|
|
('5.4-cgi', 'PHP 5.4 FCGID'),
|
|
|
|
('5.3-cgi', 'PHP 5.3 FCGID'),
|
|
|
|
('5.2-cgi', 'PHP 5.2 FCGID'),
|
|
|
|
('4-cgi', 'PHP 4 FCGID'),
|
|
|
|
),
|
|
|
|
help_text="Execution modle choose by ending -fpm or -cgi.",
|
|
|
|
validators=[Setting.validate_choices]
|
|
|
|
)
|
2015-03-04 21:06:16 +00:00
|
|
|
|
2015-03-11 16:32:33 +00:00
|
|
|
|
2015-04-27 14:54:17 +00:00
|
|
|
WEBAPPS_DEFAULT_PHP_VERSION = Setting('WEBAPPS_DEFAULT_PHP_VERSION',
|
2015-06-12 12:17:05 +00:00
|
|
|
'5.6-fpm',
|
2015-04-26 13:53:00 +00:00
|
|
|
choices=WEBAPPS_PHP_VERSIONS
|
2015-03-31 12:39:08 +00:00
|
|
|
)
|
2015-03-11 16:32:33 +00:00
|
|
|
|
|
|
|
|
2015-04-27 14:54:17 +00:00
|
|
|
WEBAPPS_PHP_CGI_BINARY_PATH = Setting('WEBAPPS_PHP_CGI_BINARY_PATH',
|
|
|
|
'/usr/bin/php%(php_version_number)s-cgi',
|
|
|
|
help_text="Path of the cgi binary used by fcgid. Available fromat names: <tt>%s</tt>" % ', '.join(_php_names),
|
|
|
|
validators=[Setting.string_format_validator(_php_names)],
|
2015-03-31 12:39:08 +00:00
|
|
|
)
|
2015-03-11 16:32:33 +00:00
|
|
|
|
|
|
|
|
2015-04-27 14:54:17 +00:00
|
|
|
WEBAPPS_PHP_CGI_RC_DIR = Setting('WEBAPPS_PHP_CGI_RC_DIR',
|
|
|
|
'/etc/php%(php_version_number)s/cgi/',
|
|
|
|
help_text="Path to php.ini. Available fromat names: <tt>%s</tt>" % ', '.join(_php_names),
|
|
|
|
validators=[Setting.string_format_validator(_php_names)],
|
2015-03-31 12:39:08 +00:00
|
|
|
)
|
2015-03-11 16:32:33 +00:00
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_PHP_CGI_INI_SCAN_DIR = Setting('WEBAPPS_PHP_CGI_INI_SCAN_DIR',
|
2015-04-27 14:54:17 +00:00
|
|
|
'/etc/php%(php_version_number)s/cgi/conf.d',
|
|
|
|
help_text="Available fromat names: <tt>%s</tt>" % ', '.join(_php_names),
|
|
|
|
validators=[Setting.string_format_validator(_php_names)],
|
2015-03-31 12:39:08 +00:00
|
|
|
)
|
2015-03-11 16:32:33 +00:00
|
|
|
|
|
|
|
|
2015-04-27 14:54:17 +00:00
|
|
|
WEBAPPS_PYTHON_VERSIONS = Setting('WEBAPPS_PYTHON_VERSIONS',
|
|
|
|
(
|
2015-04-27 12:24:17 +00:00
|
|
|
('3.4-uwsgi', 'Python 3.4 uWSGI'),
|
|
|
|
('2.7-uwsgi', 'Python 2.7 uWSGI'),
|
|
|
|
),
|
|
|
|
validators=[Setting.validate_choices]
|
|
|
|
)
|
2015-04-16 13:15:21 +00:00
|
|
|
|
|
|
|
|
2015-04-27 14:54:17 +00:00
|
|
|
WEBAPPS_DEFAULT_PYTHON_VERSION = Setting('WEBAPPS_DEFAULT_PYTHON_VERSION',
|
|
|
|
'3.4-uwsgi',
|
2015-04-26 13:53:00 +00:00
|
|
|
choices=WEBAPPS_PYTHON_VERSIONS
|
2015-04-27 14:54:17 +00:00
|
|
|
|
2015-04-16 13:15:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_UWSGI_SOCKET = Setting('WEBAPPS_UWSGI_SOCKET',
|
2015-04-27 14:54:17 +00:00
|
|
|
'/var/run/uwsgi/app/%(app_name)s/socket',
|
|
|
|
help_text="Available fromat names: <tt>%s</tt>" % ', '.join(_python_names),
|
|
|
|
validators=[Setting.string_format_validator(_python_names)],
|
2015-04-16 13:15:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_UWSGI_BASE_DIR = Setting('WEBAPPS_UWSGI_BASE_DIR',
|
2015-04-23 19:46:23 +00:00
|
|
|
'/etc/uwsgi/'
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_PYTHON_MAX_REQUESTS = Setting('WEBAPPS_PYTHON_MAX_REQUESTS',
|
2015-04-16 13:15:21 +00:00
|
|
|
500
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_PYTHON_DEFAULT_MAX_WORKERS = Setting('WEBAPPS_PYTHON_DEFAULT_MAX_WORKERS',
|
2015-04-16 13:15:21 +00:00
|
|
|
3
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_PYTHON_DEFAULT_TIMEOUT = Setting('WEBAPPS_PYTHON_DEFAULT_TIMEOUT',
|
2015-04-16 13:15:21 +00:00
|
|
|
30
|
|
|
|
)
|
|
|
|
|
2015-03-11 16:32:33 +00:00
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_UNDER_CONSTRUCTION_PATH = Setting('WEBAPPS_UNDER_CONSTRUCTION_PATH', '',
|
|
|
|
help_text=("Server-side path where a under construction stock page is "
|
|
|
|
"'/var/www/undercontruction/index.html'")
|
2015-03-31 12:39:08 +00:00
|
|
|
)
|
|
|
|
|
2015-03-10 11:46:48 +00:00
|
|
|
|
2015-03-04 21:06:16 +00:00
|
|
|
#WEBAPPS_TYPES_OVERRIDE = getattr(settings, 'WEBAPPS_TYPES_OVERRIDE', {})
|
2015-04-02 16:14:55 +00:00
|
|
|
#for webapp_type, value in WEBAPPS_TYPES_OVERRIDE.items():
|
2015-03-04 21:06:16 +00:00
|
|
|
# if value is None:
|
|
|
|
# WEBAPPS_TYPES.pop(webapp_type, None)
|
|
|
|
# else:
|
|
|
|
# WEBAPPS_TYPES[webapp_type] = value
|
2014-10-30 16:34:02 +00:00
|
|
|
|
|
|
|
|
2015-04-27 12:24:17 +00:00
|
|
|
WEBAPPS_PHP_DISABLED_FUNCTIONS = Setting('WEBAPPS_PHP_DISABLED_FUNCTION', (
|
2014-11-10 15:03:34 +00:00
|
|
|
'exec',
|
|
|
|
'passthru',
|
|
|
|
'shell_exec',
|
|
|
|
'system',
|
|
|
|
'proc_open',
|
|
|
|
'popen',
|
|
|
|
'curl_multi_exec',
|
|
|
|
'show_source',
|
|
|
|
'pcntl_exec',
|
|
|
|
'proc_close',
|
|
|
|
'proc_get_status',
|
|
|
|
'proc_nice',
|
|
|
|
'proc_terminate',
|
|
|
|
'ini_alter',
|
|
|
|
'virtual',
|
|
|
|
'openlog',
|
|
|
|
'escapeshellcmd',
|
|
|
|
'escapeshellarg',
|
2015-05-11 14:05:39 +00:00
|
|
|
'dl',
|
|
|
|
'fsockopen',
|
|
|
|
'pfsockopen',
|
|
|
|
'stream_socket_client',
|
|
|
|
# Used for spamming
|
|
|
|
'getmxrr',
|
|
|
|
# Used in some php shells
|
|
|
|
'str_rot13',
|
2015-04-27 12:24:17 +00:00
|
|
|
))
|
2014-11-10 15:03:34 +00:00
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_ENABLED_OPTIONS = Setting('WEBAPPS_ENABLED_OPTIONS', (
|
|
|
|
'orchestra.contrib.webapps.options.PublicRoot',
|
|
|
|
'orchestra.contrib.webapps.options.Timeout',
|
|
|
|
'orchestra.contrib.webapps.options.Processes',
|
|
|
|
'orchestra.contrib.webapps.options.PHPEnableFunctions',
|
2015-12-02 18:53:20 +00:00
|
|
|
'orchestra.contrib.webapps.options.PHPDisableFunctions',
|
2015-04-26 13:53:00 +00:00
|
|
|
'orchestra.contrib.webapps.options.PHPAllowURLInclude',
|
|
|
|
'orchestra.contrib.webapps.options.PHPAllowURLFopen',
|
|
|
|
'orchestra.contrib.webapps.options.PHPAutoAppendFile',
|
|
|
|
'orchestra.contrib.webapps.options.PHPAutoPrependFile',
|
|
|
|
'orchestra.contrib.webapps.options.PHPDateTimeZone',
|
|
|
|
'orchestra.contrib.webapps.options.PHPDefaultSocketTimeout',
|
|
|
|
'orchestra.contrib.webapps.options.PHPDisplayErrors',
|
|
|
|
'orchestra.contrib.webapps.options.PHPExtension',
|
2015-06-12 12:17:05 +00:00
|
|
|
'orchestra.contrib.webapps.options.PHPIncludePath',
|
2015-04-26 13:53:00 +00:00
|
|
|
'orchestra.contrib.webapps.options.PHPMagicQuotesGPC',
|
|
|
|
'orchestra.contrib.webapps.options.PHPMagicQuotesRuntime',
|
|
|
|
'orchestra.contrib.webapps.options.PHPMaginQuotesSybase',
|
|
|
|
'orchestra.contrib.webapps.options.PHPMaxInputTime',
|
|
|
|
'orchestra.contrib.webapps.options.PHPMaxInputVars',
|
|
|
|
'orchestra.contrib.webapps.options.PHPMemoryLimit',
|
|
|
|
'orchestra.contrib.webapps.options.PHPMySQLConnectTimeout',
|
|
|
|
'orchestra.contrib.webapps.options.PHPOutputBuffering',
|
|
|
|
'orchestra.contrib.webapps.options.PHPRegisterGlobals',
|
|
|
|
'orchestra.contrib.webapps.options.PHPPostMaxSize',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSendmailPath',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSessionBugCompatWarn',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSessionAutoStart',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSafeMode',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSuhosinPostMaxVars',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSuhosinGetMaxVars',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSuhosinRequestMaxVars',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSuhosinSessionEncrypt',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSuhosinSimulation',
|
|
|
|
'orchestra.contrib.webapps.options.PHPSuhosinExecutorIncludeWhitelist',
|
|
|
|
'orchestra.contrib.webapps.options.PHPUploadMaxFileSize',
|
2016-02-04 12:09:09 +00:00
|
|
|
'orchestra.contrib.webapps.options.PHPUploadTmpDir',
|
2015-04-26 13:53:00 +00:00
|
|
|
'orchestra.contrib.webapps.options.PHPZendExtension',
|
|
|
|
),
|
|
|
|
# lazy loading
|
2016-02-09 12:17:42 +00:00
|
|
|
choices=lambda : ((o.get_class_path(), o.get_class_path()) for o in webapps.options.AppOption.get_plugins(all=True)),
|
2015-04-26 13:53:00 +00:00
|
|
|
multiple=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
WEBAPPS_DEFAULT_MYSQL_DATABASE_HOST = Setting('WEBAPPS_DEFAULT_MYSQL_DATABASE_HOST',
|
2015-04-27 14:54:17 +00:00
|
|
|
'mysql.{}'.format(ORCHESTRA_BASE_DOMAIN),
|
|
|
|
help_text="Uses <tt>ORCHESTRA_BASE_DOMAIN</tt> by default.",
|
2015-03-31 12:39:08 +00:00
|
|
|
)
|
2015-04-09 14:32:10 +00:00
|
|
|
|
|
|
|
|
2015-04-26 13:53:00 +00:00
|
|
|
WEBAPPS_MOVE_ON_DELETE_PATH = Setting('WEBAPPS_MOVE_ON_DELETE_PATH',
|
2015-04-09 14:32:10 +00:00
|
|
|
''
|
|
|
|
)
|
2015-05-12 12:38:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WEBAPPS_CMS_CACHE_DIR = Setting('WEBAPPS_CMS_CACHE_DIR',
|
|
|
|
'/tmp/orchestra_cms_cache',
|
|
|
|
help_text="Server-side cache directori for CMS tarballs.",
|
|
|
|
)
|