I am trying to create a domain for my node project with nginx (v1.5.11), I have successfully redirected the domain to the Internet, but I need to use 3000 ports, so now my web location looks like http://www.myweb.com:3000/and, of course, I want to save only part of "www. myweb.com "as follows:http://www.myweb.com/
I have a search and try many configurations, but no one works for me, I don’t know why this is my local nginx.conf file, I want to change text http://localhost:8000/to text http://myName/, remember that redirection works, I just want to "hide" the port on location.
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 8000;
server_name localhost;
location / {
proxy_pass http://localhost:8000/;
proxy_redirect http://localhost:8000/ http://myName/;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
PD. I am trying to fix this on my local Windows 8 machine, but if another OS is required, my remote server is running on Ubuntu 12.04 LTS
Thanks to everyone.