If you want to use the latest available version of Squid, you can Build a Squid anonymous proxy from source code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows 7 All Online/Offline [Retail-MAK] Activation Keys | |
| ================================================================================= | |
| . Run "Command Prompt" as Administrator | |
| . slmgr.vbs -ipk Product Key | |
| . slui4 | |
| ================================================================================= | |
| Windows 7 Ultimate Retail Phone Activation Keys | |
| RHTBY-VWY6D-QJRJ9-JGQ3X-Q2289 | |
| V77DJ-CT8WB-Y3GXT-X3FBP-6F987 | |
| JC7BV-94FD2-D86PH-XRMHR-BXKDG |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Source: https://www.websavers.org/how-to-speed-up-wordpress/ | |
| rewrite !\.(js|ico|gif|jpg|png|css|pdf|mov|mp3|eot|svg|ttf|woff|otf|txt|swf)$ /index.php break; | |
| rewrite /wp-admin/$ /wp-admin/index.php break; | |
| rewrite /$ /index.php break; | |
| # enable gzip compression | |
| gzip on; | |
| gzip_min_length 1100; | |
| gzip_buffers 4 32k; | |
| gzip_types text/plain application/x-javascript text/xml text/css; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash -e | |
| ### Copyright 1999-2015. Parallels IP Holdings GmbH. All Rights Reserved. | |
| ### Secure plesk clean installation with hostname certificate by Let's Encrypt | |
| export PYTHONWARNINGS="ignore:Non-standard path" | |
| LE_HOME=${LE_HOME:-"/usr/local/psa/var/modules/letsencrypt"} | |
| HOSTNAME=$(hostname) | |
| # Use staging server for testing | |
| # --server https://acme-staging.api.letsencrypt.org/directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Simple Dynamic DNS / No-IP script for Route53 | |
| * | |
| * Setup: | |
| * 1) Setup a new Route53 zone to hold your dynamic DNS records (e.g. dynamic.mywebsite.net) | |
| * 2) Make sure this instance has permission to modify this Route53 zone (e.g. instance IAM profile, .aws credentials or ENV variables) | |
| * 3) Upload this PHP script to your instance (make sure vendor files are availalbe by running: composer require aws/aws-sdk-php) | |
| * 4) Put the allowed hostnames in the list below |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| location ~ /(?:a|A)utodiscover/(?:a|A)utodiscover.xml { | |
| root /var/www/; | |
| try_files /autodiscover/autodiscover.php =404; | |
| fastcgi_pass unix:/run/php-fpm/php-fpm.sock; | |
| fastcgi_index index.php; | |
| include fastcgi.conf; | |
| fastcgi_param SERVER_ADDR ""; | |
| fastcgi_param REMOTE_ADDR $http_x_real_ip; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .*.sw? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # download compat wireless (compat-wireless-2010-06-26-p.tar.bz2) | |
| # http://linuxwireless.org/download/compat-wireless-2.6/ | |
| cd ~/Downloads | |
| ls | |
| tar -jvxf compat-wireless-2010-06-26-p.tar.bz2 | |
| ls | |
| cd compat-wireless-2010-06-26-p | |
| make unload | |
| make load |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>DB-Convert</title> | |
| <style> | |
| body { font-family:"Courier New", Courier, monospace;" } | |
| </style> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Has XFF header with a value | |
| acl has-xff req_header X-Forwarded-For ^(([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)|(\[([0-9a-f]+)?:([0-9a-f:]+)?:([0-9a-f]+|0-9\.]+)?\])) | |
| # default logformat | |
| logformat squid %ts.%03tu %6tr %>a %Ss/%03>Hs %<st %rm %ru %[un %Sh/%<a %mt | |
| # default logformat using XFF instead of client IP address | |
| logformat squid-xff %ts.%03tu %6tr %{X-Forwarded-For}>h %Ss/%03>Hs %<st %rm %ru %[un %Sh/%<a %mt |