- neo4j version: 5.18.1
- Browser version: Version 127.0.6533.99 (Official Build) (64-bit) Google Chrome
Problem
- Able to open Neo4j UI on HTTPS URL on browser but unable to login to the neo4j backend using same https url
- Opening the browser on HTTP URL works and login works as well on this window with HTTP URL, pointing me towards either Nginx configuration or neo4j configuration to support SSL
Nginx config:
`
server {
server_name
neo4j-1blr3-qa-vm1.vimaan.app
neo4j-1-1blr3.vimaan.app
neo4j-1.1blr3.vimaan.app;
listen 443 ssl
http2;
ssl_certificate /etc/nginx/ssl/letsencrypt_fullchain.pem;
ssl_certificate_key /etc/nginx/ssl/letsencrypt_privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
listen 80;
# Nginx log files
access_log /var/log/nginx/neo4j-1blr3.access.log;
error_log /var/log/nginx/neo4j-neo4j-1blr3.error.log;
location / {
# SSL termination
proxy_pass http://10.72.99.31:7474;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_connect_timeout 10s;
proxy_read_timeout 60s;
proxy_send_timeout 60s;
client_max_body_size 256M;
} # end location block
} # end server block
`