Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
You can actually reload your HAProxy config file without a full restart (no downtime) by running:
sudo service haproxy reload
I’ve written a guide that includes how to disable SSLv3 support in some of the most common browsers available: http://scotthel.me/poodle
It should compliment the above server side changes nicely.
Note to Apache users, check your virtual hosts for any setting to SSLProtocol, as that will override the server wide configuration.
You can reload apache by using service httpd reload or service apache2 reload. Reloading the configuration is recommended to prevent downtime and test the configuration. Nginx is similar service nginx reload
Also, I believe you should add a line stating to prefer the cipher suites of the server. In nginx you can add ssl_prefer_server_ciphers on;.
I don’t use ssl on my server. and all settings for ssl3 are commented out. Do I need to worry about POODLE?
Here’s a helpful article for securing node.js apps against POODLE attacks: https://chromabits.com/post/poodle-and-nodejs
Here is the similar guide on how to tackle the SSLv3 Security vulnerability a.k.a. POODLE: http://blog.miteshganatra.com/sslv3-security-vulnerability-a-k-a-poodle/
For haproxy it isn’t necessary to add “no-sslv3” exaclty to the end of line, it works in any part of line after the bind keyword.