Tagged Questions
0
votes
1answer
38 views
nginx not starting with multiple nodejs apps
i have this config in sites-enabled/default
upstream domainone.com.ar {
server 127.0.0.1:9000;
}
server {
listen 80;
server_name www.domainone.com.ar;
rewrite ^/(.*) http://domainone.com.ar/$1 ...
0
votes
2answers
710 views
proxy.pac file performance optimization
I reroute certain websites through a proxy with a proxy.pac file.
It basically looks like this:
if (shExpMatch(host, "www.youtube.com"))
{ return "PROXY proxy.domain.tld:8080; DIRECT" }
if ...
0
votes
3answers
1k views
proxy script does not work when two networking cards are connected. How to fix this?
I have deployed a wpad.dat. Works like a charm except for some users that are connected to two networks at the same time (ethernet and another networkadapter that emulates an analog modem for fax). I ...
0
votes
3answers
1k views
Squid slow on pages with heavy javascript
We have just started using more javascript in the web interface of an internal application(php if it matters). Now that the changes are in place it is becoming very obvious that the more javascript on ...