I am trying to set up https on Zabbix dashboard website based on server ip address, for example: https://10.x.x.x/zabbix
Feeling not secure enough when login to Zabbix dashboard with out https
Does anyone know how to set up https for zabbix?
You set HTTPS on the webserver, not the application itself:
Apache: https://www.digicert.com/kb/csr-ssl-installation/apache-openssl.htm
Nginx: http://nginx.org/en/docs/http/configuring_https_servers.html
Related
So I have a load balancer connected to an ec2 instance. The ec2 has a php website running on port 8000 hosted in iis 8.5. Now http health check is passing after adding binding in iis for port 8000, but https health check is failing. But since in iis, I have used URL rewrite to redirect all http into https, thus even if load balancer's https health check is failing I can still access website on https connection.
But I really want to make my health check for https pass.
So for that I figured out, I either run https application inside ec2 on a different port than 8000 and add a binding for it (dropped the idea cause client didnot want) OR,
Redirect https target group to http target group.
Is this possible? If yes, how?
I have implemented SSL on my EC2 Windows instance. As AWS doesn't directly allow to configure SSL on EC2 instance, so I created a Load Balancer with HTTPS and configure my SSL certificate with it. I have selected my EC2 instance for Load Balancer.
Following are the listeners of my Load Balancer:
After this configuration, my domain starts working on http and also on https like http://example.com and https://example.com
Now, I want to redirect http request to https. My domain is on Godaddy. I have successfully change DNS and they are working. But when I place URL rewrite code in web.config file then both of my URLs stop working. It gives HTTP error 503
This link outlines some great options - https://blogs.msdn.microsoft.com/kaushal/2013/05/22/http-to-https-redirects-on-iis-7-x-and-higher/
Recently I installed SonarQube 6.1 version and I used Apache to enable HTTPs, now i am able to connect to SonarQube using both the URL's below.
Any idea how to disable the HTTP and make only HTTPs work ?
HTTPs URL = https://<SonarServer>/sessions/new
HTTP URL = http://<SonarServer>:9000/
According to your URL, the web front server and Apache are installing on the same host. So you just need to configure SonarQube to listen on localhost (in sonar.properties sonar.web.host=127.0.0.1) and configure Apache to do the reverse proxy for 127.0.0.1.
Well there are two approaches which you can try:
Approach, make sonar https (http://docs.sonarqube.org/display/SONARQUBE52/Running+SonarQube+Over+HTTPS)
based on the link above you could easily set sonar to https, instead of http - just be sure to provide a certificate etc.
you could as https://stackoverflow.com/users/2435199/eric-hartmann described, just simply bind it only to localhost
block 9000 from outside ips via firewall!
Imho i would stick with 1 or 2 depending on the time you would like to spend on that issue!
I've set up a Wakanda server hosted on an Amazon EC2 instance, that has SSL certificates installed as per the Wakanda documentation and accessing the home page via https easily enough, but won't redirect incoming traffic on port 80 to 443 automatically.
Being an Amazon AWS instance with an elastic IP, I've tried to set up a load balancer to handle the traffic routing for me as a possible solution. Though while that reports that it's routing "Load Balancer Port = 80" to "Instance Port = 443", it doesn't seem to be redirecting traffic either.
I may be missing something entirely in the way the Load Balancer is supposed to work, but is there a way for the Wakanda Server to automatically route incoming http traffic to https? Edit: I have also tried to set up a .htaccess file in my webFolder directory to manually try to redirect traffic, though I'm finding very limited documentation around whether that is a viable option in itself too.
Thanks!
I am a beginner in both Cloudflare and Proxy service, so I want your help in setting up a Proxy Server that uses Cloudflare. What I want to achieve is that user uses my proxy server in his browser settings, that proxy server itself uses Cloudflare.
I installed Squid3 on Debian server, and can use the server IP address as proxy settings in the browser, and all website loads fine. So I setup my Domain with Cloudflare Nameservers and within Cloudflare settings I put A record to my proxy server.
Now when I set that Domain name as the Proxy settings in the browser, only those websites load which are using CloudFlare's nameservers. All other websites show me Cloudflare's Error: 1001 - DNS resolution error.
My question is, is it possible to achieve what I am trying? If it is then what is the problem in this case?
CloudFlare only reverse proxy services meaning for a given domain we'll sit in front of your origin server and proxy all requests using a change to your DNS. Our self-service products don't allow you to proxy connections from a client to the internet in general.
If this is behaviour you're after, it's best to contact CloudFlare's sales team so something bespoke can be worked out.