-3
votes
0answers
33 views

Which server is best, apache or nginx? [closed]

I am developing an eCommerce application in PHP. Which server i want to use host my application, NGINX or APACHE ? . Consider in all aspects, security, speed and load balancing.
0
votes
0answers
8 views

nginx as reserve proxy of apache, error page issue

i typed following in my nginx vhost: server { ... error_page 403 /403.php; location ~ \.(php)${ proxy_pass ...; } } then when i try to browse a directory which should ...
1
vote
0answers
17 views

Apache/2.2.14 (Ubuntu) to serve php and Nginix or Tomcat to serve jsp/Servlets

I'm running Ubuntu on a VPS with a LAMP stack, with Apache/2.2.14 (Ubuntu 10.04) installed with various Virtual Hosts. This current setup is running two different sites on two domains and this is ...
-1
votes
0answers
22 views

Nginx failing to bind to a addres which is open [closed]

I am trying to make apache and nginx work together so nginx handles the static files and then apache does the php ones. I successfully changed apache to run on port 8081, and it is, when I try to ...
0
votes
0answers
25 views

nginx proxy_passing to Apache w/ Passenger running Ruby-Application returns ActionController::RoutingError (No route matches /subdirectory):

i am currently facing a problem which is imho beyond my scope. I have a server running Apache with Passenger serving a Ruby-Application in Production mode. DocumentRoot of the server is set to ...
0
votes
1answer
49 views

setting up django with nginx and apache

I just started developing in Django a few days back. After finishing a few applications I read that Django is best served using nginx for static content and a reverse proxy to apache for dynamic ...
1
vote
1answer
67 views

nginx wordpress too many redirects

My server environment is linux + nginx + apache + mysql. And there is a problem after I install wordpress. I can access the backend, but the frontend alway show error as below: Error 310 ...
-1
votes
0answers
36 views

How do I configure nginx to do this apache rewrite ? [closed]

I Need to convert following apache .httcess configuration to nginx. Please can some one help me. Thank in advace RewriteEngine on RewriteBase /ABC/ rewriterule ^(catByState.php) - [L] rewriterule ...
0
votes
1answer
46 views

Redirect all subdomains to www.DOMAIN.net in Apache (or better: nginx)

Usually I do it like this to redirect "DOMAIN.net" to "www.DOMAIN.net" and it works fine. <VirtualHost *:8080> ServerAdmin webmaster@DOMAIN.net ServerName DOMAIN.net ...
0
votes
0answers
35 views

nginx proxy_pass without resolving

I got a web app running behind Apache locally, at host myapp and port 8080. For communicating the outside world I got nginx listening at port 80. To expose my app outside I use proxy_pass with the ...
0
votes
3answers
74 views

how do I route multiple domains to multiple node applications?

I'm used to the typical lamp web hosting environment where you just click a few buttons in cpanel and your domain gets zoned and mapped to a folder within htdocs. I've been using node.js a lot and it ...
1
vote
2answers
62 views

Rewrite URL in Nginx proxy + apache setup

I'm working in python/django with apache and a Nginx proxy. I need to transform some URLs like these: www.mydomain.com/client_A/ www.mydomain.com/client_B/ to www.mydomain.com/clients/1/ ...
1
vote
1answer
161 views

jquery.ajax() POST receives empty response with IE10 on Nginx/PHP-FPM but works on Apache

I use a very simple jquery.ajax() call to fetch some HTML snippet from a server: // Init add lines button $('body').on('click', '.add-lines', function(e) { $.ajax({ type : 'POST', ...
0
votes
1answer
105 views

413 Request Entity Too Large when sending image data

A part of my site takes an image from an HTML5 canvas using the method .toDataURL() and then sends the raw data as part of a POST message to my server, with AJAX. On the server side, I have a cgi ...
0
votes
1answer
79 views

Apache mod_rewrite to Nginx rewrite rules

My site is running on Nginx and I am trying to add a software in the sub-directory of the site that uses Apache's mod_rewrite rules. E.g. www.mydomain.com/mySubfolder Here is the Apache .htaccess ...
0
votes
1answer
98 views

Nginx or lighttpd or apache2 only to handle php, no files [closed]

I read everywhere that nginx is the new trend of webservers. And that it perform best to delivers files. I'm currently moving to ec2, and resources are limited. I'd like to know if I'd better move to ...
0
votes
1answer
180 views

How to serve static content in a setup with Nginx -> HAProxy -> Apache?

In the below stack setup, where could I serve static content? (going with a CDN is not an option). I'm not getting in which server should I put them (servers 2 and 3, meaning static requests would go ...
0
votes
2answers
180 views

Prevent timeouts with nginx and php-fpm

I'm experiencing timeouts when running a Job Queue listener (infinite while loop). The listener calls a worker whose function involves executing a software PhantomJS using shell_exec(). I'm running ...
0
votes
1answer
30 views

Can I disable apache mod_setenvif if I'm using as reverse proxy NGinx?

I've installed Nginx as a reverse proxy in front of my existing apache server. All my requests are routed from Nginx server to Apache. Can I disable mod_setenvif in my apache server? ...
0
votes
1answer
186 views

Apache/PHP behind Nginx Reverse Proxy slower than expected

I'm not certain what I'm missing, or overlooking. Or maybe I'm just not thinking about something correctly. I am testing Apache/PHP behind an Nginx reverse proxy, (Nginx is performing GZIP, ...
0
votes
3answers
67 views

nginx change phpmyadmin folder name change error

i have my phpmyadmin setup as such location /phpmyadmin { root /usr/share/; index index.php index.html index.htm; location ~ ^/phpmyadmin/(.+\.php)$ { ...
0
votes
1answer
82 views

NGINX change phpmyadmin port within location block

i have my phpmyadmin setup as so , this is within the server block of the default in sites-available and sites-enabled How can i change the port to say 8003 within the location block or somewhere ...
1
vote
1answer
61 views

nginx - How do I make server-wide configuration for every hosted website

For each website I host with nginx, I have got a different file which holds the server {} block in /etc/nginx/conf.d/ For example... /etc/nginx/conf.d/website1.co.uk /etc/nginx/conf.d/website2.org ...
0
votes
1answer
89 views

Would it be performant to use nginx with apache with unicorn for rails or would that be slow?

For an application I'm helping architect we wanted to use nginx + unicorn as part of our server stack. We've heard good things about the speed at which nginx can serve static files. Unfortunately part ...
0
votes
1answer
87 views

Howto configure Nginx subdomain besides Rails application

I have a Rails based API that runs on a backend Nginx server and is stable. The server is not reachable from the outside, it has an Apache as a proxy before it. The API is available via a subdomain: ...
0
votes
1answer
147 views

Nginx/Apache Serve Static Content proxy

So all i need help with is improving a nginx pattern matching regex. # serve static files from nginx location ~* ...
0
votes
0answers
52 views

Works on Apache but not Nginx

I've this wordpress-code here, which aims to take a post_meta from one page, and pass it on to a src of an iframe in the next page. Single page: <a href="<?php echo get_home_url(); ...
0
votes
0answers
888 views

htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/files/domain.com/public_html/images/' is executable

Today i migrated my images from one server to another and faced a strange permission issue [Mon Mar 25 08:42:23.676315 2013] [core:crit] [pid 15182] (13)Permission denied: [client 24.14.2.22:48113] ...
0
votes
1answer
258 views

From apache to nginx: wordpress rewrite rule

I'm migrating from apache2 to nginx. I cant figure out how to to rewrite this rewrite rules for wordpress. This is actually my configuration file server { listen 80; root ...
0
votes
2answers
203 views

$_SERVER[“HTTP_ACCEPT_ENCODING”] not set by nginx

I have installed nginx on my server. Now i don't get $_SERVER["HTTP_ACCEPT_ENCODING"] variable which was working in Apache. How to get this?
-2
votes
5answers
130 views

How to store and serve 4 billions images? [closed]

I would like to build my own web page thumb-shots cloud service for my private usage. I plan to have more that 4,000,000,000 small images (10KB) I do not want to use an external service like amazon ...
0
votes
0answers
118 views

Nginx Apache Restart Connection time out

Basically Nginx sits in the front end of the server running on port 80, Apache runs on port 8080 and Nginx delivers all incoming traffic via the proxy to apache. The issue is if I am to restart the ...
0
votes
2answers
256 views

Nginx Block/Deny Access to multiple locations regex

So basically i am using Nginx as a reverse proxy for my Apache instillation and as a security feature it blocks access to phpmyadmin, webalizer etc for everyone except localhost but using nginx it ...
0
votes
1answer
181 views

nginx-apache-wordpress: setup apache/wordpress under subdirectory and behind nginx

I had developed a Rails app and was happy with it, but I was asked to setup Wordpress under subdirectory /wp. After some unhappy hours of trying to make nginx-to-apache proxying work, I gave up ...
-1
votes
1answer
34 views

Should http/php-fpm/mysql daemon or service be started by root or other user? [closed]

All these website related services like apache, nginx, mysql, php-fpm, should they be started by root user or it's not good. When a session handler is created by a root apache/nginx master process, ...
0
votes
1answer
69 views

rewrite rules for manage.py runserver like .htaccess for apache

Using .htacess, we can redirect requests like this : RewriteRule \.(?:txt)$ handle_txt.php which redirects all requests from .txt to handle_txt.php which sends the output in the required manner. ...
0
votes
0answers
42 views

nginx in front of apache and ferozo [closed]

Hello I have a hosting that uses dpanel with ferozo on apache, but I want put nginx in front for load balancing. The problem is that now the dpanel is disabled. I found in the apache configuration ...
-1
votes
2answers
153 views

Routing requests through index.php with nginx [closed]

I'm migrating my server from Apache to Nginx and have this very simple .htaccess rule: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [QSA,L] The idea behind it is to ...
0
votes
1answer
100 views

Can Nginx cache conf files? [closed]

I have Nginx set up as a front end proxy with apache on a centos vps. Recently, when I go to change the configuration file for a specific website or the nginx.conf file itself, I am not seeing any ...
-1
votes
1answer
76 views

Is NginX good for Forums? Is NginX really fast? [closed]

I am migrating from a shared host to VPS for the first time and I am in a dilemma wondering if I need to go with NginX or still stick with Apache. Atm I use Apache for my site that runs on phpbb ...
0
votes
1answer
61 views

GEOIP_ADDR 127.0.0.1 Apache mod_geoip + nginx

I installed mod_geoip2 apache module, and can see it in Loaded Modules in phpinfo(); However, in Apache Environment my GEOIP_ADDR is 127.0.0.1. My REMOTE_ADDR is correct remote address. I also have ...
0
votes
0answers
121 views

Why is nginx as apache front-end proxy not loading .html files?

I was following this tutorial https://www.digitalocean.com/community/articles/how-to-configure-nginx-as-a-front-end-proxy-for-apache to have a setup where nginx handles static stuff and all php files ...
0
votes
1answer
202 views

Converting .htaccess to nginx (mod_rewrite) [closed]

I've got the following .htaccess file for my apache: <IfModule mod_rewrite.c>  Options +FollowSymlinks # Options +SymLinksIfOwnerMatch  RewriteEngine On  RewriteBase /  RewriteRule ^$   ...
-1
votes
1answer
114 views

nginx and memcached, returns “download” as an attachment and not html content [closed]

I've got nginx set up to serve html content straight from memcached but to fail over to PHP using our own backend (not a traditional set up hence the configuration) but whenever a page is set in PHP ...
-1
votes
1answer
55 views

apache to nginx rewrite rule [closed]

I got a simple rule which I'm not sure how to rewrite for nginx: RewriteBase / RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d [OR] RewriteCond %{REQUEST_FILENAME} ...
0
votes
1answer
123 views

nginx reverse proxy to apache server - only fulfill nginx forwarded requests

Had a question as to what this is called and if it is even possible... I have my main app on an nginx server. I have my blog on an apache server that is seperate for security. Both servers have ...
0
votes
1answer
81 views

.htaccess URL Argument Rewriting to NGINX

We are moving a PHP site from Apache to NGINX and came up against a problem when trying to get NGINX to recognize arguments passed from site URLs into index.php. Our .htaccess command on Apache looks ...
0
votes
3answers
205 views

Do i need to use apache or nginx to host a server?

Do i need to use NginX or am i able to host it without it? I am developing my first django project and am at the point where i can run the app project using the command: ./manage.py run_gunicorn -c ...
0
votes
1answer
61 views

Convert these rewrite apache rules to nginx

In my Wordpress, I changed the posts permalinks structure. In order to don't get 404 erros for the old links, I would like to redirect the old permalinks to the new permalinks. According to this, the ...
0
votes
2answers
132 views

Deploying WSGI Application - Apache and/or Nginx

I've just recently started working with Python WSGI based frameworks (Pyramid and Flask). I've been working with Apache since forever, but recently I got a lot hype for asynchronous non-blocking ...

1 2 3 4 5 9