IMAP Forwarder - Newbie
Hi all, I am completely new to nginx. All of my family members use email addresses at one of my domains (hosted in another country). Recently, the hosting company transferred my account to a different...
View Articlewhy localhost/phpmyadmin redirect to my drupal site
i installed drupal , nginx , php-fpm on my ubuntu desktopand if i'm go to http://localhost i get the drupal sitea - i whant that druapl will be in his folder localhost/drupal/ ....b- now...
View ArticleRe: nginx rewrite with ISPConfig
try this.===location / {try_files $uri $uri/ /index.php?$args;}
View ArticleDeny host to 403 Page with PHP
Hello all,I've setup a webserver with NGINX and PHP-FPM.Everything is working correctly except for this.I have a list of IP's that I block.I want the 'bad hosts' (blocked IP's) to be redirected to a...
View ArticleNginx server running but not work. [+Magento, varnish and nginx]
Hi, i have a problem, in my link server i'nst workhttp://50.116.109.106:8086/(yeah i have a change port 2 times, first to 8080 now to 8086, the website with magento store dont appears, dont work. i no...
View Articleproblem with limit_conn
hi guys ,I am using nginx version 1.0.10 on linux centos 6.5 . I want to add the following to lines to my nginx config file:limit_conn_zone $binary_remote_addr zone=conn_limit_per_ip:20m;limit_conn...
View ArticleConvert from port to path
Looking to convert this working confserver {server_name zoneminder-webgui;root /usr/share/zoneminder;index index.php;autoindex off;server_tokens off;sendfile on;large_client_header_buffers 4...
View ArticleAuth - How To Shut Off
Hello, I previously set up auth on most of my wordpress websites (all on separate vhost files). It worked successfully but once I removed the following from each vhost I am still getting prompted to...
View ArticleSingle point login
Don't know what to call this, but single sign on seems to be close, but i'll break it down.Can nginx provide me with a solution to allow people to access a variety of services on a server, on a single...
View Articlenginx reverse proxy problem
Hello everyone,i wanted to mirroring my other site using nginxbut what i get is only apache pageis there something i need to do ?info :both domain in different iptarget site using cpanel apachethank you
View ArticleRe: Nginx load balancer replicate traffic to upstream server
I was able to replicate using post_action module.upstream main_upstream {least_conn;server 192.168.9.10:80;keepalive 1024;}server {listen 80;server_name _;client_body_buffer_size...
View Article"map $url" does not work instead of "if $url"
This configuration works:if ($uri ~ "/(apple|banana|orange)/") {set $nocache 1;}However this does not work:map $uri $nocache {default 0;~^/(apple|banana|orange)/ 1;}I prefer using map for performance...
View ArticleRe: Nginx load balancer replicate traffic to upstream server
chucks510 Wrote:-------------------------------------------------------> I was able to replicate using post_action module.post_action state.
View ArticleProblem setting up rewrite rules
Hello guys,The problem is with the rewrite rules: I'm not sure if I need to include something in order to get the rewrite module included in nginx. Any idea or help will be appreciated! Before writing...
View ArticleCannot resolve error 304 in my magento Shop
Hello,I recently switched from Apache to NGINX. So far I like this Server. Pretty fast and easy to config. Now I am experiencing problems using a Magento Shop running on NGINX. Installation works fine...
View ArticleError upstream timed out. What is wrong with my setup?
Hello people. New guy here.I am experiencing massive 504 gateway timeouts and i would like to know what is wrong with my setup. I have posted my configuration...
View Articleauth_request own error_page
How to make an own error_page for auth_request?I configurest nginx to check access for page "/something.php" (auth_request /auth). I want to return a custom error page when auth subrequest denies...
View ArticleMissing /etc/nginx
Hello everybody,I'am new here so hopping to do things correctly :)I have a problem:On Ubuntu server 14.04 I tried many times to install Nginx from differents ways (apt-get or make install) but whatever...
View ArticleRe: Missing /etc/nginx
The solution:sudo apt-get purge nginx nginx-*sudo apt-get -o Dpkg::Options::="--force-confmiss" install --reinstall nginxKaelung
View ArticleNginx in front of another server. How it works ?
Hello, I think that I understand most of aspects related to nginx and reverse proxy mechanism itself, but I found one thing that is incomprehensible for me.According to this schematic...
View Article