By medina592002
I am trying to make a subdomain on Nginx. I understand that I have to make a new server block but even after doing that I am still unable to access it. This is a copy of my working config file without the subdomain. http://pastebin.com/Ah9gri1u
I am hoping to put everything in that one file. I created a new directory in /var/www/stage. Any help would be greatly appreciated!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I read in the comments of the article about putting it in one file but you make a good point. It’d be more organized if I separated them. Thanks for your help!!
Edit /etc/nginx/sites-available/default and add the following:
server {
listen 80;
server_name www.example.com;
root /var/www/example;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ =404;
}
}
server {
listen 80;
server_name blog.example.com;
root /var/www/blog;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ =404;
}
}
Hope this helps! :-)
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.