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
We use specific apache authentication to protect CRM from world and Redtimer can't work with it because "401 Unauthorized" returned from server. Is any workaround available?
Apache configuration
Listen *:3000
<VirtualHost *:3000>
DocumentRoot /var/www
PassengerAppRoot /var/www/redmine
Alias /redmine/ "/var/www/redmine/public/"
RailsEnv production
RailsBaseURI /redmine
<Directory "/">
AllowOverride AuthConfig
AuthType Basic
AuthName "Authentication Required"
AuthBasicProvider file
AuthUserFile /var/www/redmine/.htpasswd
Require valid-user
Satisfy Any
Order allow,deny
</Directory>
<Directory "/var/www/redmine/public/">
Options -Indexes -ExecCGI FollowSymLinks
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
The text was updated successfully, but these errors were encountered:
We use specific apache authentication to protect CRM from world and Redtimer can't work with it because "401 Unauthorized" returned from server. Is any workaround available?
Apache configuration
The text was updated successfully, but these errors were encountered: