feat: implement dashboard UI components, IPC handlers, and service configuration templates
This commit is contained in:
@@ -8,7 +8,7 @@ Alias /{{HOST}} "{{PATH}}"
|
||||
|
||||
# --- KRİTİK EKLEME BURASI ---
|
||||
# PHP'ye php.ini dosyasını {{PHP_DIR}} klasöründe aramasını söyler
|
||||
SetEnv PHPRC "{{PHP_DIR}}"
|
||||
SetEnv PHPRC "{{PHP_INI_DIR}}"
|
||||
# ----------------------------
|
||||
|
||||
# Passing Authorization header to PHP
|
||||
|
||||
@@ -6,6 +6,9 @@ Alias /{{HOST}} "{{PATH}}"
|
||||
AllowOverride All
|
||||
Require all granted
|
||||
|
||||
# PHP'ye php.ini dosyasını generated_configs klasöründe aramasını söyler
|
||||
SetEnv PHPRC "{{PHP_INI_DIR}}"
|
||||
|
||||
# Passing Authorization header to PHP
|
||||
CGIPassAuth On
|
||||
|
||||
|
||||
@@ -0,0 +1,56 @@
|
||||
[PHP]
|
||||
engine = On
|
||||
short_open_tag = Off
|
||||
precision = 14
|
||||
output_buffering = 4096
|
||||
zlib.output_compression = Off
|
||||
implicit_flush = Off
|
||||
unserialize_callback_func =
|
||||
serialize_precision = -1
|
||||
disable_functions =
|
||||
disable_classes =
|
||||
zend.enable_gc = On
|
||||
expose_php = On
|
||||
max_execution_time = 300
|
||||
max_input_time = 120
|
||||
memory_limit = 512M
|
||||
error_reporting = {{ERROR_REPORTING}}asdasd
|
||||
display_errors = {{DISPLAY_ERRORS}}
|
||||
display_startup_errors = On
|
||||
log_errors = On
|
||||
log_errors_max_len = 1024
|
||||
ignore_repeated_errors = Off
|
||||
ignore_repeated_source = Off
|
||||
report_memleaks = On
|
||||
html_errors = On
|
||||
variables_order = "GPCS"
|
||||
request_order = "GP"
|
||||
register_argc_argv = Off
|
||||
auto_globals_jit = On
|
||||
post_max_size = 100M
|
||||
auto_prepend_file =
|
||||
auto_append_file =
|
||||
default_mimetype = "text/html"
|
||||
default_charset = "UTF-8"
|
||||
doc_root =
|
||||
user_dir =
|
||||
enable_dl = Off
|
||||
file_uploads = On
|
||||
upload_max_filesize = 100M
|
||||
max_file_uploads = 20
|
||||
allow_url_fopen = On
|
||||
allow_url_include = Off
|
||||
default_socket_timeout = 60
|
||||
session.save_path = "{{SESSION_DIR}}"
|
||||
upload_tmp_dir = "{{TEMP_DIR}}"
|
||||
sys_temp_dir = "{{TEMP_DIR}}"
|
||||
extension_dir = "{{EXT_DIR}}"
|
||||
fastcgi.impersonate = 1
|
||||
cgi.force_redirect = 0
|
||||
cgi.fix_pathinfo = 0
|
||||
|
||||
[ExtensionList]
|
||||
{{EXTENSIONS}}
|
||||
|
||||
[Date]
|
||||
date.timezone = UTC
|
||||
Reference in New Issue
Block a user