Used Zammad Version
latest
Environment
- Installation method: docker compose
- Operating system ubuntu 20.04
- Database + version: postgresql 15
- Elasticsearch version: latest
- Browser + version: firefox
Actual behaviour
I also have a problem with third-party authentication, with Microsoft Office, an error appears, I have also followed the tutorials on the official page, registering the application and everything but nothing
nginx.conf
server {
server_name pruebas.interpro.ec;
listen 80;
location /.well-known/acme-challenge/ {
auth_basic off;
allow all;
root /usr/share/nginx/html;
try_files $uri =404;
break;
}
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 805 ssl; # Puerto para HTTPS
server_name name.xxx.ec;
ssl_certificate /etc/nginx/certs/certificate.crt;
ssl_certificate_key /etc/nginx/certs/certificate.key;
location / {
proxy_pass http://pruebas.interpro.ec:8030;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
}
}
Support Ticket
No response
I’m sure this is a bug and no feature request or a general question.
no