0
votes
2answers
22 views
Nginx Running Wordpress Redirecting www to non-www by mistake
I have an nginx server (1.4.1) running a website in Wordpress. It is automatically redirecting www.mysite.com to mysite.com without any specific rules for doing so. I'd like it to stop and keep the ...
0
votes
2answers
82 views
+50
nginx, uwsgi and python - uwsgi service is not starting
I have python application (concrete Django) running on my server. Before yesterday, it was successfully running under apache with mod-wsgi with almost no problem. I had two main reason to switch to ...
-1
votes
0answers
6 views
Weird /cache/$md5_hash requests hitting my web server [closed]
I sometimes see that sort of requests hitting my web server. Let's say I have a page example.com/search/, sometimes I see that sort of requests ...
0
votes
0answers
13 views
Nginx upload_module with WSGI
In my setup I have nginx in front of uWSGI running a flask app. I need the user to upload image files so I'd like this to be as non-blocking as possible. Upload_module seems perfect for this job, but ...
1
vote
2answers
112 views
Nginx location “not equal to” regex
How do I set a location condition in Nginx that responds to anything that isn't equal to the listed locations?
I tried:
location !~/(dir1|file2\.php) {
rewrite ^/(.*) http://example.com/$1 ...
0
votes
1answer
57 views
Trouble with Nginx config for running wordpress multisite network [closed]
I have a wordpress site running on my nginx VPS. I want to have multisite working using subdirectories. I have searched around for appropriate configs and have implemented the following. The config is ...
0
votes
1answer
31 views
nginx configuration. how to give different web sites different names?
i have a pointer from sites-enables/qooxdoo to /var/www/qooxdoo/nginx.conf where i have the following:
server {
listen 80; ## listen for ipv4; this line is default and implied
root ...
0
votes
2answers
516 views
Nginx + PHP VS node.js [closed]
What are the benefits and drawbacks of using:
Nginx + PHP + MySQL
VS
Node.js + MySQL
PS. Don't ask what I'm building, i just want a general idea/concept between the two setups.
I don't ask about ...
0
votes
2answers
66 views
configuring nginx server_name if you don't have any domain name pointing to it
I have an ubuntu machine which has an ip address tied to it, and I have a site that i want to configure in my virtual host. the issue is what should I put in my server_name if I don't have any domain ...
1
vote
1answer
56 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
69 views
Assistance optimizing server with high-traffic
I am in need of some help. Currently, I have the following package:
2048 MB
80gb RAID 10 Disk Space
4x CPU Priority
5000 GB bandwidth
CentOS
(VPS-4)
http://www.knownhost.com/vps_packages.html
My ...
0
votes
1answer
110 views
Multiple .conf files subdomains using nginx
Under my domain, say example.com, I want to have a landing page (which will surface when hitting example.com), a WordPress blog (which will live at blog.example.com) and my resume in HTML (which will ...
0
votes
2answers
68 views
Styling not loading when implemented on server
When running my website locally (via yesod devel) the styling loads up and all is good.
CSS files are loaded correctly. Using this method
But when uploaded onto my amazon ec2 server styling is not ...
0
votes
2answers
498 views
Strange webserver issue
MY OS: Ubuntu 12.10
Web server environment is: Nginx + PHP-FPM
Installed based on this tutorial
Here is nginx conf file of website
server {
set $host_path "path_to_website";
server_name ...
0
votes
1answer
69 views
Nginx proxy_pass to upstream
I'm trying to proxy requests to another server. When I proxy_pass to an upstream, my application returns a 404. However, if I proxy_pass directly the the host, it works. The upstream is defined in my ...
1
vote
1answer
28 views
RemoveHandler for nginx
in my website users can upload their files and have a short url of that files.
before this i used apache webserver but now i want to switch to nginx.
in apache i used this snippet to remove php ...
1
vote
1answer
178 views
Using variables in Nginx location rules
In Nginx, I'm trying to define a variable which allows me to configure a sub-folder for all my location blocks. I did this:
set $folder '/test';
location $folder/ {
[...]
}
location ...
1
vote
0answers
449 views
nginx load balancer to node.js
I am very new to the node.js and nginx world. I am trying to arrange a simple setup having 2 node servers (just a simple hello world) and nginx working as the load balancer. I am using upstream to ...
1
vote
0answers
62 views
Comparison between Writing non-blocking code vs Creating a big number of webserver workers
My web application's main functionality is a blocking method that will wait 1 to 5 seconds for I/O response. I can write the method's code in a non-blocking way by creating another thread and using a ...
0
votes
0answers
59 views
custom error pages in nginx for a ruby in rails application running with passenger
I want to add the custom nginx error pages like we are under maintenance and other error pages. This the configuration I have written
server {
listen 80;
server_name myapp.com;
...
2
votes
1answer
229 views
Absolute path for error_page in nginx?
Is there a way I can set an absolute path for nginx error_pages? Not absolute as in http://, but absolute as in /usr/var/nginx/errors/500.html.
1
vote
1answer
428 views
My node.js app is getting an Unhandled 'error' event randomly on writing requests after I had put it behind nginx
I am running node.js(0.8.20 and 0.9.10) on windows 2012 server. I have ran it absolutely without any problems for weeks. That was without Nginx(1.2.6) in front. With nginx in front configured like ...
1
vote
1answer
120 views
How to re-use NGINX proxy settings in several locations
I have the need to restrict access to certain files based on a query string parameter. I have an NGINX proxy server that sits in front of several other nginx web servers for load balancing. I have ...
1
vote
0answers
57 views
Server chokes on php files from time to time
I am using Nginx on Windows for development testing, and every now and then A page won't load. Chrome just sits there and loads eventually a blank white page displays and this line gets put into ...
0
votes
0answers
203 views
setting up multiple domains on same server using nginx?
i have just started using nginx so my config is pretty basic, I set up a node server and got that working. Just as a test but now I have a few domains that I want to be able to access, and i'd like ...
0
votes
2answers
1k views
Nginx with PHP5-FPM — .php files giving blank screens
I'm banging my head against the wall trying to get nginx up and running with php5-fpm. I felt that it was a small detail I was overlooking, so I took a break and came back to it a few days later. ...
0
votes
0answers
279 views
detected unhandled Python exception
abrt: detected unhandled Python exception in '/usr/local/cpanel/hooks/addondomain/addaddondomain'
code:
#!/usr/bin/env python
import subprocess
import sys
import os
import yaml
from xml.dom import ...
2
votes
1answer
246 views
How can I setup default directives for all servers in nginx? (Issues with Plesk)
I have a DV 4.0 server on media temple which is setup with nginx as a reverse proxy to apache. I want to configure some far future expires headers (using location blocks) and other settings for my ...
-2
votes
1answer
272 views
Do you know any reason to use Apache instead of Nginx?
Do you know any reason to use Apache instead of Nginx? I'm talking about a "new project" with no any legacy code or configuration.
updated:
Most popular reasons to use Apache are:
we have our ...
0
votes
1answer
21 views
What are the methods to know when the production server goes down?
We are using rails 3.1.
We are using nginx as a web-server & unicorn as application server, and also we are running some background jobs (Eg: Solr, delayed jobs, etc.) for accomplishing some ...
0
votes
1answer
49 views
How do I point two domains to the same django page?
I have a Django app running a site, abc.com using nginx on the frontend.
The URL: http://abc.com/products/widget shows the widget product page. I would like to also have the URL http://getwidget.com ...
0
votes
0answers
52 views
nginx rewrite everything after host as request
I am migrating my server from Apache to Nginx and I need the following rewrite rules to be applied: force non www urls to www, add php extension to files, and rewrite everything after the host name ...
1
vote
1answer
875 views
nginx subdomain configuration on virtual host
There are several questions on SO about nginx subdomain configuration but didn't find one that exactly the same as mine.
Say I got a virtual host some.example.com from higher-level net admin ...
1
vote
1answer
562 views
Nginx: return error 403 and display a message
I'd like nginx to return an error 403 if user-agent is MSIE 6 and to display a custom error message.
I used this code and everything worked the first minutes. Then it just returned the error without ...
0
votes
1answer
605 views
High CPU load but low CPU usage and RAM usage
I am running a mobile website to get the live running status of any train in India. It is http://www.spoturtrain.com . The full code is written in PHP and Nginx is used as the webserver, php-fpm is ...
0
votes
1answer
148 views
Nginx getting error with specific domain name
I'm in the process of seting up a new server. The http-Server of my choice is NGINX. I want to add the domain audi-freunde-einbeck.de as a virtual host. I already have 2 other domains in there and it ...
0
votes
0answers
42 views
Scientific measurement of server performance?
I am always wondering, if there's any scientific formula that could successfully predict a server's capabilities.
For classical web server performance, request per second is effected by these ...
0
votes
0answers
42 views
storing files in load-balancer by creating symbolic link in web server
we have 3 server 1 for load balancer and others for web server.
i want to storage user uploaded files in load balancer.
how can i create sym link in load balancer?
Server Conf: Debian Squeeze, ...
0
votes
1answer
264 views
Using php5-fpm and nginx in a debian machine
I am trying to set up nginx server to run a php app in debian. I followed this tutorial among others. Most seems the same. My recent configuration is based on the link above. When I try to run this ...
1
vote
1answer
325 views
Why rewrite directive causes “301 Moved Permanently” with Nginx?
Below is a much simplified version of what I have in the configuration file of a server run by Nginx 1.2.5, yet it causes 301 Moved Permanently with Location: http://example.com/phpmyadmin/ before ...
0
votes
1answer
397 views
Deny access to a PHP file (Nginx)
I want Nginx to deny access to a specific PHP file, let's call it donotexposeme.php, but it doesn't seem to work, the PHP script is run as usual. Here is what I have in the config file:
location / {
...
2
votes
1answer
363 views
Lean Node.js + Nginx server infrastructure for a mobile app?
I am working on my own first mobile app which should be native on Android, iOS and also a web app which runs inside the mobile browser. I plan to use NodeJS and nginx should serve my files, git should ...
1
vote
1answer
89 views
What's the IPC mechanism between Nginx and backend server?
Nginx transfers requests to other backend servers, such as Thin(Ruby server), or Node.js server, or Tomcat, then What's the IPC mechanism between them?
Shared memory?
Socket (even in same machine)?
...
2
votes
2answers
198 views
How does web server lists files in absence of index files in the directory
How do I customize the list that web server does in absence of index.* file in the web root or its child directory, if we do not put any index files in the web root directory and the directory has the ...
1
vote
2answers
373 views
How to restart RoR services after server has been rebooted
Update I have been searching around to see what services would possibly need to be restarted in my project after reboot. One of them was thinking sphinx, which I finally got to the point where it ...
-1
votes
1answer
93 views
What is a s suitable web-server software to handle massive amounts of requests for a PHP Application? [closed]
I am working with apache2, mostly because I got used to it and know it pretty well.
My application is a PHP API which handles huge amounts of requests.
The server load is absolutely not critical, ...
1
vote
0answers
62 views
Manipulating web content without having to make changes to the web server or content
I want to be able to manipulate web content coming from my web servers without making any changes to them or the content. Kind of a dynamic content proxy.
It seems a reverse proxy server such as ...
1
vote
1answer
63 views
How to instantly display a custom page in nginx when upstream web server is down?
I tried to do this but for some reason it does work as expected:
server {
...
location / {
if (!-f /opt/jira/work/catalina.pid) {
return 503;
}
proxy_pass http://127.0.0.1:8080;
}
...
0
votes
1answer
80 views
Include PHP script in all cPanel accounts?
Is it possible to include a PHP script to all cPanel accounts in a server without the script residing in each user's home directory?
For example global.php resides somewhere in the server:
// ...
0
votes
0answers
91 views
What is the fastest Rails production environment? [closed]
I've read a little about deploying applications with Rails but it is all very confusing, there are so many possibilities. Therefore, I'd like to know (not based on your opinion, but rather on your ...



