Wordpress htaccess for URL
I'd love some help, already struggling for 2 weeks on this one: I'm moving my Wordpress form Apache to Nginx. On Apache we used .htaccess <IfModule mod_rewrite.c> RewriteRule...
View ArticleRe: nginx "file not found" with index.php
That's a permission error. I'm not sure what you mean by the two directories are "the same" but I would check the permissions of all of the directories in that path. One of the directories is probably...
View ArticleRe: Wordpress htaccess for URL
I'm confused. You seem to be using two different locations: /business-profile and /business. I think if you really meant for it to be /business, then try: location /business { rewrite...
View ArticleRe: Wordpress htaccess for URL
Thanks Jim. Unfortunately it didn't work.. I guess we're going to have to stick to the query.
View ArticleRe: Server redirect without rewrite rules in Nginx config
About blocking by reading files, does it matter when webserver loads files to be able to send them to client? Because on first load OS will usually cache the file in RAM, so it is not problem to load...
View ArticleRedirect an url to other root on a multiple domain server
Hello, I have a server with multiple domains (tendanza.com, canapes-design.com, canapes-pas-cher.com, etc), all the domains being used on the same website (different views). I need to have...
View ArticleRe: Server redirect without rewrite rules in Nginx config
Each check does a file IO which is blocking while its active, with thousands of users this can become a problem. When you have 4 or more workers blocking becomes less of an issue.
View ArticleRe: Redirect an url to other root on a multiple domain server
This works for a static file, yes? So this is a problem with how PHP is being served. Please post more of your configuration, particularly for how you're serving PHP, and the contents of the error log...
View ArticleServer_Name / Direct to right virtual host
Hi, my intended configuration of nginx is to have four virtual hosts on one ubuntu system. Any host should be available only via SSL, so I have port 80 redirected to port 443. Any host should only be...
View ArticleRe: Server_Name / Direct to right virtual host
You have no default server listening on 443. In such a case, nginx will use the first listed server. See http://nginx.org/en/docs/http/request_processing.html. "Note that default server is a property...
View ArticleRe: Server redirect without rewrite rules in Nginx config
Is this blocking the same like regular load of file to send it by http? Am I correct regexp on file contents before it will be send will have no extra IO (or it will be very fast because of file system...
View ArticleRe: Redirect an url to other root on a multiple domain server
Dear Jim, thank you for your answer, I attach my full config to this message. I added a wordress_fcgi.conf in conf and included it on the /blog/ location, but I guess I'm doing it wrong. Thank you!...
View ArticleRe: Server redirect without rewrite rules in Nginx config
It all depends on size, OS cache response and caching method, for example having files on a ramdrive does not block eventhough its IO (depending on quality of ramdrive software). Anything that does...
View ArticleRe: Server redirect without rewrite rules in Nginx config
Thank you very much. Your replies are very helpful.
View ArticleProblem with ssl_session_ticket_key and ssl_session_cache
I am currently doing my thesis on Origin Confusion and thus i am playing around to see how this can occur. Currently i am trying to share a cacher id session id's between all virtual hosts regardless...
View ArticleMutual authentication for SSL termination for TCP Upstream
Hi All, The particular feature I am interested is SSL termination for TCP Upstream. We have an application which accepts messages (TCP) over TLS. With NGINX, I want to do the following: 1. Terminate...
View ArticleRe: Mutual authentication for SSL termination for TCP Upstream
I have posted the question in serverfault as well. Please take a look as I have mentioned the problem is details:...
View ArticleHow do i enable http2 module ?
Hello, noob here. How do i enable "http2" module in nginx ? Console gives me "the "http2" parameter requires ngx_http_v2_module" And i don't have "--with-http_v2_module" if i do "nginx -V" So, how do i...
View ArticleRe: How do i enable http2 module ?
But nginx.org has windows version.. why should i buy another ? I just need to know how to enable modules..
View Article