Welcome! Log In Create A New Profile

Advanced

Re: nginix not servic static content as part of page

February 05, 2010 03:26PM
Oh, and here is my full nginx.conf contents:

error_log logs/error.log;
worker_processes 1;
events {
worker_connections 1024;
}

http {
include mime.types;
default_type application/octet-stream;

upstream mysite {
server 127.0.0.1:4004;
}
server {
#note: not actual IP
listen 111.222.333.444:80;
server_name _;
return 444;
}
server {
#note: not actual IP
listen 111.222.333.444:80;
server_name new.mysite.co.uk;
root ../rails/MySite/public;

location / {
try_files $uri @rails;
}

location @rails {
proxy_pass http://mysite$request_uri;
}

proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}

Grateful for any help!

JS
Subject Author Posted

nginix not servic static content as part of page

JohnSchulze February 05, 2010 06:08AM

Re: nginix not servic static content as part of page

Reinis Rozitis February 05, 2010 06:36AM

Re: nginix not servic static content as part of page

Maxim Dounin February 05, 2010 07:24AM

Re: nginix not servic static content as part of page

JohnSchulze February 05, 2010 03:04PM

Re: nginix not servic static content as part of page

Igor Sysoev February 05, 2010 04:10PM

Re: nginix not servic static content as part of page

JohnSchulze February 05, 2010 05:21PM

Re: nginix not servic static content as part of page

Igor Sysoev February 08, 2010 06:38AM

Re: nginix not servic static content as part of page

JohnSchulze February 05, 2010 03:26PM

Re: nginix not servic static content as part of page

JohnSchulze February 11, 2010 10:06PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 224
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready