How to block keywords in https URL using squid proxy?How to block HTTPS site using RHEL Squid?Two HTTP...
An average heaven where everyone has sexless golden bodies and is bored
Were Alexander the Great and Hephaestion lovers?
Does an ice chest packed full of frozen food need ice?
How can I most clearly write a homebrew item that affects the ground below its radius after the initial explosion it creates?
Random Unitary Matrices
Using a found spellbook as a Sorcerer-Wizard multiclass
Winning Strategy for the Magician and his Apprentice
How do I write "Show, Don't Tell" as a person with Asperger Syndrome?
Are there downsides to using std::string as a buffer?
Can anyone identify this tank?
What risks are there when you clear your cookies instead of logging off?
How to officially communicate to a non-responsive colleague?
Can a user sell my software (MIT license) without modification?
What is the actual quality of machine translations?
Is it possible to 'live off the sea'
What's the largest optical telescope mirror ever put in space?
Do simulator games use a realistic trajectory to get into orbit?
What does the term "railed" mean in signal processing?
Understanding the TeXlive release cycle: What is the meaning of a TeXlive release and is it ever 'finished'?
Watts vs. Volt Amps
Find the Factorial From the Given Prime Relationship
Arriving at the same result with the opposite hypotheses
How do governments keep track of their issued currency?
How to build suspense or so to establish and justify xenophobia of characters in the eyes of the reader?
How to block keywords in https URL using squid proxy?
How to block HTTPS site using RHEL Squid?Two HTTP servers on port 80 and 443Block a certain URL?Pages don't get blocked with Squid over HTTPSRedirect outbound traffic on LAN going to port 443 to port 80 or 8080 insteadTransparent HTTPS Squid proxy with upstream parentHow to pass an HTTPS scheme request to a proxy without using a CONNECT tunnel on FreeBSD?Squid filters some of Bugzilla HTTPs URLssquid with urlpath_regex not working with httpsSquid block non-proxy user
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I want to block keyword "import" in any URL, including https websites. Example:
http://www.abc.com/import/dfdsf
https://xyz.com/import/hdovh
How to create acl to do it?
Thanks
squid https url
bumped to the homepage by Community♦ 44 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I want to block keyword "import" in any URL, including https websites. Example:
http://www.abc.com/import/dfdsf
https://xyz.com/import/hdovh
How to create acl to do it?
Thanks
squid https url
bumped to the homepage by Community♦ 44 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I want to block keyword "import" in any URL, including https websites. Example:
http://www.abc.com/import/dfdsf
https://xyz.com/import/hdovh
How to create acl to do it?
Thanks
squid https url
I want to block keyword "import" in any URL, including https websites. Example:
http://www.abc.com/import/dfdsf
https://xyz.com/import/hdovh
How to create acl to do it?
Thanks
squid https url
squid https url
asked Nov 20 '15 at 15:36
flakeflake
63
63
bumped to the homepage by Community♦ 44 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 44 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
acl ofnoimport urlpath_regex /import/
http_access deny ofnoimport
HTTPS might be a bit tricky, given those come through as CONNECT
requests...
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f244391%2fhow-to-block-keywords-in-https-url-using-squid-proxy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
acl ofnoimport urlpath_regex /import/
http_access deny ofnoimport
HTTPS might be a bit tricky, given those come through as CONNECT
requests...
add a comment |
acl ofnoimport urlpath_regex /import/
http_access deny ofnoimport
HTTPS might be a bit tricky, given those come through as CONNECT
requests...
add a comment |
acl ofnoimport urlpath_regex /import/
http_access deny ofnoimport
HTTPS might be a bit tricky, given those come through as CONNECT
requests...
acl ofnoimport urlpath_regex /import/
http_access deny ofnoimport
HTTPS might be a bit tricky, given those come through as CONNECT
requests...
answered Nov 20 '15 at 16:22
thrigthrig
25.4k23660
25.4k23660
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f244391%2fhow-to-block-keywords-in-https-url-using-squid-proxy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown