Skip to main content

How to Configure Squid Proxy

1. Install Squid

2. edit squid.conf

3. #vi /etc/squid/squid.conf (Readhat Version)

4. add this line
acl mynet src 192.168.1.0/24
http_access allow mynet


5. enable memory_replacement_policy lru

6. enable cache_replacement_policy lru

7. enable cache_dir ufs /var/spool/squid 100 16 1024

8. add this line
visible_hostname your.domain

9. start squid using port 3128

Comments

Cacá said…
Hello Efren.
I'm brasilian, and i'm tryng to create a video stream with upload on my website using a webcam.
I searched this on the internet but i didn't found... Can you help me?
Flash is the better option, all right? How i do it?

thanks,
Carlos.
Cacá said…
can you send your e-mail? We can talk more on a e-mail.

Popular posts from this blog

Automated Testing with Behat & Mink on Linux

Have time to read my introduction. Behat + Mink + Selenium Server will do the automatic testing for your website. Behat handles your test cases in a form of a sentence which consist of the following Feature - which is a description of your test case. Example is "Title Checking" Scenario - Feature consist of Scenario's Conditions - Scenario's consist of condition using the following tags "Given", "When", "Then", "And", "But" Example feature:  Feature: Google Search @javascript Scenario: Check Google Site When I go to " http://www.google.com " Then Capture a ScreenShot @javascript Scenario: Search Efren on Google Given I am on " http://www.google.com " When I input "Efren" in " gbqfq" element When press " Google Search " Then print current URL Then Capture a ScreenShot You need t...

Skipfish for CENTOS

#yum install openssl-devel #yum install pcre-devel #yum install libidn-devel #wget https://skipfish.googlecode.com/files/skipfish-2.10b.tgz #tar xzvf skipfish-2.10b.tgz #cd skipfish-2.10b #make #touch dict.wl #./skipfish -o output_dir -W dict.wl http://192.168.1.254

Initial Installation of RoR Centos, Fedora, Redhat

# yum install ruby # y um install gcc g++ make automake autoconf curl-devel openssl-devel zlib-devel httpd-devel apr-devel apr-util-devel sqlite-devel # yum install ruby-rdoc ruby-devel # y um install rubygems # mkdir ~/src # cd ~/src # wget http://production.cf.rubygems.org/rubygems/rubygems-2.2.2.tgz # cd rubygems-1.3.6 # ruby setup.rb Install Rails # gem update # gem update --system # gem install rails # gem install rails -V -----DONE