|
Apr
4 |
|
awarded | Yearling |
|
Mar
29 |
|
awarded | Yearling |
|
Mar
29 |
|
awarded | Yearling |
|
Mar
21 |
|
comment |
Varnish load-balance with per-server request rewriting Indeed I did. Have checked the director "client". I haven't used it before but this seems to be what you're looking for. |
|
Mar
17 |
|
answered | Varnish load-balance with per-server request rewriting |
|
Sep
4 |
|
comment |
PHP stop working after a server reboot As php runs via a daemon process (FPM) nginx has to connect it. This can be done via socket or port. You can check how your nginx connects php in the parameter fastcgi_pass. Does is look like unix:/var/run/xyz.sock you are using a socket. In this case check the file (here /var/run/xyz.sock) in your file system. If nginx connects php via network you can check the connection via telnet. |
|
Jun
18 |
|
awarded | Constituent |
|
Jun
18 |
|
awarded | Caucus |
|
Jun
4 |
|
awarded | Critic |
|
May
12 |
|
comment |
Slow MySQL Remote Connection We had a comparable situation here. In our case the reason for such delay was the huge amount of SQL queries. The application has sent between 100 to 200 different SQL queries for one single page. You can check this be enabling the query logging on MySQL side but be careful this can grow really fast. |
|
May
12 |
|
answered | PHP script hangs on local IP change |
|
May
12 |
|
answered | how to use varnish-cache behind a proxy |
|
May
12 |
|
answered | Apache Bench Varnish Long Tail of results |
|
May
8 |
|
comment |
Nginx: read temporary cache file You can check the upstream_cache_status (wiki.nginx.org/HttpUpstreamModule#.24upstream_cache_status) and make an if-block including your exception. |
|
May
7 |
|
answered | Nginx: read temporary cache file |
|
May
6 |
|
comment |
Mod rewrite doesn't work on SSL I have linked a good description about this (see Edit 2). In short your certification provider hasn't used the root certificate which is installed in all browsers to sign your certificate. So you have to add an intermediate to make your certificate working on all browsers. Details are attached in section Edit 2 as well. |
|
May
2 |
|
answered | PCI Compliance Scans |
|
May
2 |
|
comment |
PHPMailer: Error handing with BCC I have added an example of how to use this with PHPmailer. |
|
May
2 |
|
revised |
PHPMailer: Error handing with BCC added 1239 characters in body |
|
May
2 |
|
comment |
how to format date and time? I like the part that I can use XPath to search for specific time ranges. It's a lot more complicated if you are using a different notation. |