KevinTheJedi
Hi @KevinTheJedi, thank you again for your attention and inputs. The AllowOverride All has been entered into virtualhost:
`# osTicket configuration using Let's Encrypt SSL
<VirtualHost :80>
ServerName ticket.myemail.com
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.) https://%{SERVER_NAME}/$1 [R=301,L]
</virtualhost>
<VirtualHost *:443>
ServerAdmin buruguduystunstugudunstuy@myemail.com
DocumentRoot /var/www/html/osticket/upload
ServerName ticket.myemail.combdo-cmc.ph
<Directory /var/www/html/osTicket/upload>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/osticket_error.log
CustomLog ${APACHE_LOG_DIR}/osticket.access.log combined
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/ticket.myemail.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/ticket.myemail.com/privkey.pem
</VirtualHost>`
a2enmod rewrite:
azureuser@TICKETSVR01:~$ sudo a2enmod rewrite
Module rewrite already enabled
Just a couple of minutes ago, I've likewise included in /etc/apache2/apache2.conf with no success:
<Directory /var/www/html/osticket/upload>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
BTW, local login (without OAuth2) is working perfectly fine. Error is showing after entering credentials and accepting a prompt.
Thanks!