Community Page
- www.opticality.com/blog/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- I been doing a similar thing watching through the seasons of The Wire, which aired a while ago on HBO. I missed the first couple of seasons and tried to watch it a bit in the 3rd season but just...
- Thanks Erin, we'll do our best to catch a live Amy Ray show as well, now that we know about it. :-) We've eaten dinner once at Emily's restaurant, Watershed. It was absolutely...
- "Each of them could easily be a solo superstar, both in terms of their songwriting and their vocal and instrumental ability.." I'm sure you know that Amy Ray does quite a bit of solo...
- In the current manual, version 2.2.4, it's now in section 9.10. The command itself is on page 134. It's the same as I responded to Piefke666 in a comment above this one.
- Hello, i use vb and i need to know how to do this "A quick scan of their excellent manual gave me the answer. There is a command line administration tool called VBoxManage.exe that can be used...
Jump to original thread »
Last week, my friend Jamie Thingelstad tweeted from the Rails Conference that he was considering switching to NginX (I’ll probably drop the caps starting now) after sitting in on a session about it.
Prior to that mention, I had only heard of it once, when an inter ... Continue reading »
Prior to that mention, I had only heard of it once, when an inter ... Continue reading »
1 year ago
It seems that you just should not use if()s in nginx.conf for such kind of things, it is rather slow and not intended for request-uri case handling; it is supposed to be used in specific cases like user-agent checks etc.
use regexp locations instead.
to avoid copy-pasting, put some directives to the server{} level, or use the include directive.
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
I'm going to get a RoR app setup via nginx as well. Seems really slick to have nginx on front with PHP-FPM and Mongrel.
The thing that confuses me the most about nginx is how to handle wordpress nice URL's. I saw lots of fright from people about the lack of mod_rewrite. You seem okay though, yes?
1 year ago
As for mod_rewrite, it's actually a one-liner in nginx. Basically, if the URI doesn't exist on the filesystem (that's the part I screwed up initially, entirely my fault!), then you simply pass it as a parameter to index.php in the blog root.
Works like a charm, no matter what the permalink structure on your site. It's beautifully simple. :-)