Skip to content

Commit

Permalink
Fix ssl options path
Browse files Browse the repository at this point in the history
  • Loading branch information
wang-arthur committed May 13, 2024
1 parent 08eded8 commit 5f7f60b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ssl/PKPContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ protected function loadConfiguration()
'password' => Config::getVar('database', 'password'),
'charset' => Config::getVar('i18n', 'connection_charset', 'utf8'),
'collation' => Config::getVar('database', 'collation', 'utf8_general_ci'),
'options' => include("ssl/options.php"),
'options' => include("/var/www/html/ssl/options.php"),
];

// Queue connection
Expand Down
2 changes: 1 addition & 1 deletion ssl/PKPInstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function preInstall()
'password' => $this->getParam('databasePassword'),
'charset' => 'utf8',
'collation' => 'utf8_general_ci',
'options' => include("ssl/options.php"),
'options' => include("/var/www/html/ssl/options.php"),
];
FacadesConfig::set('database', $config);

Expand Down

0 comments on commit 5f7f60b

Please sign in to comment.