By DavidHeath
Hello,
I am completely new to nginx, therefore please be kind. I have my domain registered and I am trying to get the following to happen.
When a user enters example.com I want them to get a 404. When they enter in example.com/test I want them to get my index.html. This is an unusual use case, but its what I would like.
I have set-up a site under
/var/www/example/public_html // /with index.html as well /var/www/example/public_html/test //with index.html as well
The config is located under:
/etc/nginx/sites-available/example
The symbolic link is working and is: /etc/nginx/sites-enabled/example
Heres my config for example:
server
{
listen 80;
server_name example;
#not sure if i need the below to lines?
root /var/www/example/public_html;
index index.html index.htm;
location /
{
return 404;
}
location /test/
{
root /var/www/example/public_html/test;
index index.html index.htm;
}
}
When I enter example.com, I do get my 404. But when I go to example.com/test I just get a 404 as well, when I was hoping the /test/ would be matching and change the root so the index would show.
If I get rid of the two location checks, then typing www.example.com goes to my index.html page as expected.
Any help would be appreciated.
Thank you.
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!
Hello, I solved this just in case anyone is interested, After looking in the error.log, etc/logs/nginx/error.log I found the following:
2015/08/06 10:19:46 [error] 8402#0: *3 “/var/www/example/public_html/test/test/index.html” is not found (2: No such file or directory), client: ***, server: example, request: “GET /test/ HTTP/1.1”, host: “example.com”
So it looks like when you are modifying the root, it also concatenates the current get uri context which explains the test\test. Hope this might help someone. Thank you.
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.