similar to: set privoxy to rewrite http to https

Displaying 20 results from an estimated 7000 matches similar to: "set privoxy to rewrite http to https"

2010 Dec 17
1
google chrome "big brother"
Google Chrome Terms of Service(Google Chrome executable),?BSD?(source code and Chromium executable except chromium 5 beta),BSD License?with proprietary parts (source code and chromium 5 beta executable, as it integrates?Adobe Flash Player?10.1[1])[2] http://en.wikipedia.org/wiki/Google_Chrome in my?interpretation, this means Google Chrome is fully open-source, only the flash player has proprietary
2010 Dec 22
5
do i need a dedicated ip address for https?
http://help.godaddy.com/article/1054 "# Set up SSL protection on your website." is it an inescapable requirement to have a dedicated [not fix] ip address, when i want to use ssl on my domain? thank you happy Christmas! :)
2011 Jan 19
7
Let's talk about HTTPS Everywhere
Ok. It's a Firefox Add-on: https://www.eff.org/https-everywhere Questions: 1) But: Why can't i find it on the offical Firefox Add-ons site?: https://addons.mozilla.org/en-US/firefox/ 2) Did anyone audited the "HTTPS Everywhere" code? 3) Can someone trust this Add-on? Is it safe to install/use? 4) If it's so great why isn't it more prevalent? What's youre
2020 Mar 21
1
Problem with HTTP stream but not HTTPS.
If you use Chrome, recent updates won't allow connections to an http server if the referring url is on an https server. I wonder how much additional CPU strain this causes when you have a few hundred plus listeners to encrypt everything. Anyway, this is the way it is now, unless you use the likes of .pls/.m3u files with the http server link for an external player. Cheers, Gavin. On
2020 Mar 21
4
Problem with HTTP stream but not HTTPS.
Strange issue - not sure if something has changed in Icecast2, but suddenly my long-running stream won’t connect to 8000 and says 'File or directory not found’ http://listen.radioclash.com:8000/ <http://listen.radioclash.com:8000/> but will happily connect to the SSL port I’ve set up https://listen.radioclash.com:8443/ <https://listen.radioclash.com:8443/> I am using Liquidsoap
2011 Mar 03
5
HOW to REDIRECT to HTTPS?
I'm searching for a method [on client side] to redirect to HTTPS in a few given domains. e.g.: http://www.facebook.com/ to https://www.facebook.com/ Ok. I use several webbrowsers, and not all of them has "add-ons" to redirect these pages to https. My purpose is this: when i go to "http://www.facebook.com" i don't want to see any http traffic with wireshark
2010 Dec 27
2
logrotate.d - reload vs restart
Looking at some of the stuff in /etc/logrotate.d, I see entries like this in some of the configuration files: postrotate /sbin/service privoxy reload 2> /dev/null || true >From the commandline, that doesn't work: # /sbin/service privoxy reload 2> /dev/null || true Usage: /etc/init.d/privoxy {start|stop|restart} Changing reload to restart does work: ]# /sbin/service privoxy
2006 Jan 10
0
R for Windows Proxy Solution
For errors with: download.file() install.package() update.package() any other command that R uses to access the internet Setting up a proxy in R 2.2.1 for windows. I work at a Central Bank so our firewall and proxy are very particular. To allow R to access the net I did the following: 1. In order for other programs, specifically STATA, to access the internet we use a program called Privoxy.
2018 Sep 03
1
Icecast 2.4.3 stop play on https
Hi, We use Icecast 2.4.3 and SSL streaming for a long time on CentOS 6 and 7. The last time we have some problems on playing 192k mp3 on https. The stream play 2 second and stop, on http we have not that problem. (we restart the encoder, but same problem) (we use a jPlayer and direct stream url in chrome) We check on the error log, but no errors and in the access log we see:
2018 Mar 08
2
Squid and HTTPS interception on CentOS 7 ?
Le 08/03/2018 ? 17:15, hw a ?crit : > But you aren?t broadcasting messages, or are you? > > If they mean something like "make data accessible", the only way to > be compliant with such a law is by not providing public access. How > do you distinguish between things that are contrary to basic human > dignity and things that aren?t, and how do you keep track of all >
2011 Jan 05
6
recursively find duplicate filenames
find duplicate filenames in a folder find | perl -ne 's!([^/]+)$!lc $1!e; print if 1 == $seen{$_}++' find duplicate filenames in a folder recursively ? how?
2016 Jun 02
4
FYI: http
I just had to browse to a printer... and with https-use-strict at a server higher up, firefox *would* *not* let me get there. I don't see the circa-2012 printer offering https. Luckily, there was konqueror, which *did* let me go to http://<printer> I just *adore* SmartSoftware that Won't Let You Endanger Yourself.... Reminds me of Jack Williamson's old novel, The Humanoids.
2019 Mar 13
5
Full HTTPS support
Hi! I've been giving support for streaming and streamcasting over HTTPS... Everything started while giving streaming support to my website. When I read a console error (or was it a warning?) on Chrome, when the browser accessed to an http:// resource from an https:// domain. Then I decided to fix it by the clean way. I don't need official support yet... but if you don't mind to
2004 Sep 22
3
fw to fw question
Hi. I''m a happy shorewall user. I found something that looks like a possible bug. I''m using shorewall on a single computer at home. I''m using the privoxy proxy server and dansguardian content filter. I configured shorewall based on the "one interface" example from the shorewall.net website. I set the firewall up so that users cannot directly connect to
2018 Mar 05
2
Squid and HTTPS interception on CentOS 7 ?
Nice, thanks for sharing. You could probably just drop your CA cert in the filesystem and run a couple of commands to get it imported, rather than having to import the CA in the browsers individually. You could probably deliver it via yum/rpm or better yet, ansible or even some shell script. -- Sent from the Delta quadrant using Borg technology! Nux! www.nux.ro ----- Original Message -----
2017 Aug 26
2
ALPN and Http/2, CentOS 7.4
Now that 7.4 CR has delivered OpenSSL 1.0.2, I should be able to serve http/2 pages to Chrome, but I still see messages that ALPN is not enabled. OpenSSL 1.0.2 is installed: $ rpm -qa |grep openssl openssl-libs-1.0.2k-8.el7.x86_64 openssl-1.0.2k-8.el7.x86_64 But https://tools.keycdn.com/http2-test says "www.stevenstern.me" supports http 2 but ALPN is not supported. Ideas? Does
2011 Jan 02
3
variable in loop
$ ASDF=hello; a=0; a=$(( 70 - $(echo $ASDF | awk '{print length}') )); echo "$a $ASDF"$(for i in {1..$a}; do printf "."; done) 65 hello. $ Why doesn't it print: 65 hello................................................................. What am i missing?
2015 Nov 07
0
Cannot chown file to active directory user/group on member server
On 07/11/15 16:02, Krutskikh Ivan wrote: > Hi, > > I need to change ownership of server files to user/group defined in active > directory ( using rfc2307 and unix attributes). Chown returns no error, but > 'ls -lia' shows that file ownership is unchanged. What am I doing wrong? > > archive-test:/archive/video # ls -lia ./test.mp4 > 17121 -rw-r--r-- 1 root root
2010 Dec 01
10
How to Redirect from http://mysite.com to https://www.mysite.com on Herok
Hello I''m looking to learn how to redirect all non-www (mysite.com) to https://www.mysite.com I tried the following: class ApplicationController < ActionController::Base before_filter :check_uri def check_uri redirect_to request.protocol + "www." + request.host_with_port + request.request_uri if !/^www/.match(request.host) if Rails.env ==
2016 Jun 02
2
FYI: http
On Thu, Jun 02, 2016 at 04:25:49PM -0500, Valeri Galtsev wrote: > > I for one am looking for decent replacement for firefox for at least 5 > years (no, do not suggest chrome, or google anything, please), still > without success. The bizarre with Firefox started shortly after a guy I > know (as undergraduate student in our Department) became production > director of Mozilla