GoogleBot shows blank page
Hello guys! I'm totally break. Its seems that something is bad with my nginx configuration and I didn't notice till now. All my visitors see perfect my web page (WordPress), but googlebot shows a...
View ArticleGooglebot likes white
Hello guys! I'm totally break. Its seems that something is bad with my nginx configuration and I didn't notice till now. All my visitors see perfect my web page (WordPress), but googlebot shows a...
View ArticleRemote Desktop Gateway behind NGINX Reverse Proxy
Hello @ all, maybe my question has already been asked and some one can lead me to the wright Post. I am new to NGINX and very convinced and also positivly surprised about this program. I have now the...
View ArticleRe: Remote Desktop Gateway behind NGINX Reverse Proxy
You can't share a https and stream on the same port, either only use stream or use a different port with stream. RDP needs stream as its TCP and not HTTP(s). # load balance your rdp servers via port...
View ArticleRe: Preaccess handler being called twice
Hi, I got same problem in my sample. I found that redirect raise this issue. you can load your page by http://127.0.0.1/index.html not http://127.0.0.1/ nginx will redirect the request to index.html to...
View ArticleHide extension and take PATH_INFO ?
With Apache, this address: http://www.example.com/abc/def/ghi/jkl/mno will work if any of these files exist: /abc.php /abc/def.php /abc/def/ghi.php /abc/def/ghi/jkl.php /abc/def/ghi/jkl/mno.php without...
View ArticleRe: Hide extension and take PATH_INFO ?
location ~ \.php$ { ........ http://stackoverflow.com/questions/2237189/serving-php-files-from-different-locations-in-nginx
View ArticleRe: Hide extension and take PATH_INFO ?
If I put a .php file at http://www.example.com/a.php, then I want it to run if the user goes to http://www.examle.com/a, http://www.example.com/a/b, or http://www.example.com/a/b/c.
View ArticleRe: Hide extension and take PATH_INFO ?
> location ~ \.php$ { ".php" won't be in the web address, so this won't work. > index a.php b.php I'm not sure how this would help either. I don't want to list the .php files one by one in the...
View Articlenginx with nodejs and elastic search
I am using nginx as web/proxy server for my website build using MEAN stack. So the configuration file for nginx looks like server { listen 80; server_name www.domainname.com; location / { proxy_pass...
View ArticleRe: nginx with nodejs and elastic search
jiteshanand Wrote: ------------------------------------------------------- > listen 9200; ....... > proxy_pass http://localhost:9200; Your listening and passing on the same port.
View Articlehow to setup fancyindex on centos 7?
Hello Guys , I am currently using nginx version 1.8.1 on my centos 7 server . Is there anyway to add fancyindex module to nginx without having to uninstall and install it again ? If I have to install...
View Article$ssl_session_id usage
I've read a lot. But I still do not understand, when $SSL_SESSION_ID is empty and when not.
View ArticleUsing nginx as reverse_proxy with subfolders
Hello everyone, I have several applications, which are running on dedicated servers. For some of them, I cannot change the subfolder, so they are available with their domain (like http://application1...
View ArticleMake Nginx not process If-Match header
Hi, In my Nginx environment, if I post to a URL that it handles and I set the request header If-Match, then it returns with: 412 Precondition Failed. I'm assuming this is normally the expected...
View ArticleNginx behind SSL Offloader
Hi, i have a Nginx server behind a SSL Offloader device. Flow is then: Browser with https to SSL Offloader, SSL Offloader with http to nginx server. My Nginx server is listening on port 80. When i...
View ArticleNGINX UDP Load Balancing
I'm trying to load balance UDP packets across two servers with NGINX. My server application requires that the client IP address be forwarded because that is how it identifies the specific client that...
View ArticleNginx reverse proxy running on other server than Owncloud installation
Hello I'm having a few problems setting up my reverse proxy to my owncloud. This is my nginx config file for owncloud: http://pastebin.com/1EpUpjtH I'm failing where to direct it to the URL where...
View Article