Minemeld - NGINX reverse proxy

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
Please sign in to see details of an important advisory in our Customer Advisories area.

Minemeld - NGINX reverse proxy

L0 Member

Hi

 

I am trying to setup a minemeld server (docker image https://hub.docker.com/r/jtschichold/minemeld/ ) behind a Nginx reverse proxy. This however is to be hosted on a subpath, however I cant seem to get the authentication to work (This all works correctly is i don't use a subpath). In other apps, I have the option to set teh app base path etc. 

 

My "frontend" nginx configuration is as per below  (nginx/1.15.9 via nginx official docker image)

 

 

http {

  server {
      listen 80;
      return 301 https://$host$request_uri;
  }

  server {
      listen 443 ssl;

      access_log            /var/log/nginx/nginx.access.log;
      error_log            /var/log/nginx/nginx.error.log;

      ssl_certificate           /etc/pki/tls/certs/proxy.crt;
      ssl_certificate_key       /etc/pki/tls/private/proxy.key;
      ssl_trusted_certificate   /etc/nginx/certs/root-ca.pem;
      ssl_prefer_server_ciphers on;
      ssl_session_cache         shared:SSL:10m;
      ssl_session_timeout       5m;
      ssl_protocols             TLSv1.1 TLSv1.2 TLSv1.3;
      ssl_ciphers               "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA HIGH !RC4 !aNULL !eNULL !LOW !3DES !DES !MD5 !EXP !PSK !SRP !DSS";
      server_tokens             off;

      location /threat/ {
          proxy_pass https://minemeld/;
          #proxy_set_header Host $http_host;
          #proxy_redirect     off;
      }
      location / {
          proxy_pass https://kibana:5601/;
      }

  }

Any idea's on how best to do this ? I have tried numerous configurations for the "threat" locatin woth no luck

 

Any help is appreciated

 

Thanks

2 REPLIES 2

L0 Member

I'm trying to do the same thing and have the same issues. Any progress?

Hi,

 

Honestly, I haven't looked any further into this. Sorry

 

Thanks

 

  • 3563 Views
  • 2 replies
  • 1 Likes
Like what you see?

Show your appreciation!

Click Like if a post is helpful to you or if you just want to show your support.

Click Accept as Solution to acknowledge that the answer to your question has been provided.

The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!

These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!

The LIVEcommunity thanks you for your participation!