You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ErrorLog /var/log/httpd/redmine-error_log
CustomLog /var/log/httpd/redmine-access_log common
<Directory "/opt/redmine">
Require all granted
# MultiViews must be turned off
Options -MultiViews
</Directory>
PerlLoadModule Apache::Authn::Redmine
<Location />
Order allow,deny
Allow from all
PerlAccessHandler Apache::Authn::Redmine::access_handler
PerlAuthenHandler Apache::Authn::Redmine::authen_handler
RedmineDSN "DBI:Pg:database=redmine;host=127.0.0.1"
RedmineDbUser "redmine"
RedmineDbPass "xxxxx"
RedmineGitSmartHttp yes
`
The text was updated successfully, but these errors were encountered:
OK, I've figured it out (no thanx to the obscure error messages). I must be the only one who is using https!
Basically my virtual host configuration is missing 3 entries re SSL:
SSLEngine on
SSLCertificateFile
SSLCertificateKeyFile
Redmine version: 3.4.4.stable
redmine_git_hosting plugin version: 1.2.3
gitolite v.3
HTTPS only access to repositories. I can clone OK but when pushing I get the following error:
fatal: Authentication failed for ''
On the server side in the git_hosting.log I get the following error however:
SmartHttp : your are trying to push data without SSL!, exiting !
I am confused on what the real cause of the problem is
My virtual host redmine configuration file is:
`<VirtualHost *:443>
ServerName .....
ServerAlias ......
ServerAdmin ....
DocumentRoot /opt/redmine/public
PassengerRuby ......
PassengerFriendlyErrorPages on
The text was updated successfully, but these errors were encountered: