Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm just starting to explore nginx on my ubuntu 10.04. I installed nginx and I'm able to get teh "Welcome to Nginx" page on localhost. However I'm not able to add a new server_name, even when I make the changes in site-available/default file. Tried reloading/restarting nginx, but nothing works.

share|improve this question
1  
What are you expecting to happen when you add the server_name? Give an example of what you are setting and what request you are doing. – Michael Papile Feb 5 '11 at 17:45

2 Answers

up vote 9 down vote accepted

To build on mark's answer, it's recommended you create a configuration file for your site in sites-available. Just follow any tutorial for a simple nginx config and wiki.nginx.org for details

After creating the configuration, create a symbolic link with this command, assuming that your conf file is named "myapp" and nginx is at /etc/nginx (could also be at /usr/local/etc/nginx):

ln -s /etc/nginx/sites-available/myapp /etc/nginx/sites-enabled/myapp

By the way, you could always create your conf file directly in sites-enabled but the recommended way above allows you to "enable and disable" sites on the server very quickly without actually moving/deleting your conf file.

P.S: Actually Don't trust the tutorials: check your configuration!

P.P.S: You can use the command nginx -t to test your sites conf and nginx -s reload to reload the conf.

share|improve this answer

The usual way to add another site in Nginx in Ubuntu is to copy the sites-available/default file to sites-available/new-site-name, then create a symbolic link in sites-enabled to sites-available/new-site-name.

In the new configuration file, you need to edit the listen and server directives. Use listen to specify the IP address and port, and the server directive to specify the hostnames. For more details, see HttpCoremodule.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.