Call Us Today! 1.555.555.555support@wbcomdesigns.com

NGINX iRule Example

Home Forums Group Forums Loadbalancer (LB) NGINX iRule Example

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • cowboy avatar

    Here is what a rule looks like in NGINX

    listen       443;
    server_name  domain1.com;
    ssl                  on;
    ssl_certificate      path/to/cert;
    ssl_certificate_key  path/to/key;
    ssl_protocols        TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers RC4:HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers on;
    keepalive_timeout    60;
    ssl_session_cache    shared:SSL:10m;
    ssl_session_timeout  10m;
    location / {
            proxy_pass   http://XX.XX.XX.XX:XX; 
            proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
            proxy_set_header        Accept-Encoding   "";
            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 $scheme;
            add_header              Front-End-Https   on;
    }

     

    • This topic was modified 3 weeks, 2 days ago by cowboy avatarcowboy.
    • This topic was modified 3 weeks, 1 day ago by cowboy avatarcowboy.
    eventguyznet avatar

    here is a test on python

    #!/usr/bin/env python3
    print("Hello World")

     

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.