How to serve different url with one file in nginx - nginx

I use docker container to serve an html and some other files. there is no back-end website. I just server some static files.
I need to point some different url to one folder.
I have one index.html file in /usr/share/nginx/html.
I want to point all ulr like:
/ , /a , /a/b/c , /a/
to the same:
/usr/share/nginx/html/index.html file.
my nginx config is as below :
server {
listen 80;
location /lalala/ {
proxy_pass http://lalalalalala/;
}
location /proxy/bebebebe/ {
proxy_pass https://www.bebebebe.com/;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
I try to use alias like this:
location / {
root /usr/share/nginx/html;
index index.html index.htm;
alias /a /usr/share/nginx/html
alias /b /usr/share/nginx/html
alias /a/b/c /usr/share/nginx/html
}
But it's not work.

You can use try_files to look for a specific file and return index.html if that file is not found.
For example:
location / {
root /usr/share/nginx/html;
try_files $uri /index.html;
}
See this document for details.

Related

how to access a directory besides the root using Nginx?

In Nginx, I try to make the uploads directory outside the root in yii2, but it doesn't accessible
server_name teracourses.com;
set $host_path /var/www/html/teracourses;
root $host_path/frontend/web;
location / {
try_files $uri $uri/ /$yii_bootstrap?$args;
}
location /uploads/ {
alias /var/www/html/teracourses/uploads/;
}
Try the following way:
location /uploads {
root /var/www/html/teracourses/uploads/;
}
it should do the job

Nginx - static directory doesn't work

This works fine by accessing http://localhost
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
But why doesn't it work when I try to access http://localhost/test with this configuration?
location /test {
root /usr/share/nginx/html;
index index.html index.htm;
}
Use the alias directive:
location /test {
alias /usr/share/nginx/html;
index index.html index.htm;
}
With the root directive, the value of the root and the URI are appended together to obtain the path to the file.
With the alias directive, the value of the location is removed from the URI first, so /test/index.html will be mapped to /usr/share/nginx/html/index.html.
See this document for details.

Nginx - another root for a specific location

I have some static html files under:
/var/www/project1
Nginx config for this project is:
server_name www.project1.com project1.com;
root /var/www/project1;
location / {
index index.html;
}
My goal is to use nginx so that when a user enters this url:
www.project1.com/project2
Nginx uses another root, I have tried:
location /project2 {
root /var/www/project2;
index index.html;
}
But this is not working. Any idea on how to achieve this?
According to your config of project2
location /project2 {
root /var/www/project2;
index index.html;
}
Nginx will be looking for files under the path /var/www/project2/project2/ for your requests to project2. So if your project2 is under /var/www/project2, The correct config should be
location /project2 {
root /var/www;
index index.html;
}
Another alternative is to use alias instead of root.
in your case is alias /var/www/project2, check here

Multiple Location For Static Location in Nginx Configuration

I have a two locations where my app will serve static files, one is /my/path/project/static and the other is /my/path/project/jsutils/static.
I'm having a hard time getting the webserver to look in both directories for static content. Here is my entry for static location in the nginx configuration file for my app.
location ^~ /static {
root /my/path/project/static;
alias /my/path/project/jsutils/static;
index index.html index.htm;
}
I get an error that says : "alias" directive is duplicate, "root" directive was specified earlier.
I'm not sure how to go about having nginx look in both these paths for static content.
Thank you in advance for any help.
location ^~ /static {
root /my/path/project/static;
index index.html index.htm;
try_files $uri $uri/ #secondStatic;
}
location #secondStatic {
root /my/path/project/jsutils/static;
}
So first the file will be searched in /my/path/project/static and if that could not be found there, the secondStatic location will be triggered where the root is changed to /my/path/project/jsutils/static.
You may use try_files (http://wiki.nginx.org/HttpCoreModule#try_files). Assuming that you static files are in /my/path/project/static and /my/path/project/jsutils/static. you can try this:
location ^~ /static {
root /my/path/project;
index index.html index.htm;
try_files $uri $uri/ /jsutils$uri /jsutils$uri/ =404;
}
Let me know if it works. Thanks!
Just implement your configuration in nginx language:
location /my/path/project/static {
try_files $uri =404;
}
location /my/path/project/jsutils/static {
try_files $uri =404;
}
I had the exact same problem and it looks like nginx doesn't like when root is overwritten by an alias. I fixed it by firstly removing the root declaration that was inside the server section and instead declared the root and alias appropriately directly in the location sections (note the commented out lines):
server {
# root /usr/share/nginx/html;
location /logs/ {
root /home/user/develop/app_test;
autoindex on;
}
location /logs2/ {
# root /home/user/branches/app_test;
alias /home/user/branches/app_test/logs/;
autoindex on;
}
}

Configure nginx with multiple locations with different root folders on subdomain

I'm looking to serve the root url of a subdomain and directory of a subdomain to two different folders on my server. Here is the simple set-up that I have and is not working...
server {
index index.html index.htm;
server_name test.example.com;
location / {
root /web/test.example.com/www;
}
location /static {
root /web/test.example.com/static;
}
}
In this example going to test.example.com/ would bring the index file in /web/test.example.com/www
and going to test.example.com/static would bring the index file in /web/test.example.com/static
You need to use the alias directive for location /static:
server {
index index.html;
server_name test.example.com;
root /web/test.example.com/www;
location /static/ {
alias /web/test.example.com/static/;
}
}
The nginx wiki explains the difference between root and alias better than I can:
Note that it may look similar to the root directive at first sight, but the document root doesn't change, just the file system path used for the request. The location part of the request is dropped in the request Nginx issues.
Note that root and alias handle trailing slashes differently.
The Location directive system is
Like you want to forward all request which start /static and your data present in /var/www/static
So a simple method is separated last folder from full path , that means
Full path : /var/www/static
Last Path : /static and First path : /var/www
location <lastPath> {
root <FirstPath>;
}
So lets see what you did mistake and what is your solutions
Your Mistake :
location /static {
root /web/test.example.com/static;
}
Your Solutions :
location /static {
root /web/test.example.com;
}
server {
index index.html index.htm;
server_name test.example.com;
location / {
root /web/test.example.com/www;
}
location /static {
root /web/test.example.com;
}
}
https://nginx.org/en/docs/http/ngx_http_core_module.html#root
A little more elaborate example.
Setup: You have a website at example.com and you have a web app at example.com/webapp
...
server {
listen 443 ssl;
server_name example.com;
root /usr/share/nginx/html/website_dir;
index index.html index.htm;
try_files $uri $uri/ /index.html;
location /webapp/ {
alias /usr/share/nginx/html/webapp_dir/;
index index.html index.htm;
try_files $uri $uri/ /webapp/index.html;
}
}
...
I've named webapp_dir and website_dir on purpose. If you have matching names and folders you can use the root directive.
This setup works and is tested with Docker.
NB!!! Be careful with the slashes. Put them exactly as in the example.
If you use this, I will suggest you set up this command too.
location /static/ {
proxy_set_header Host $host/static; // if you change the directory and the browser can't find your path
alias /web/test.example.com/static/;
}
If you want to check two different directories for the same URI use this config:
server {
...
root /var/www/my-site/public/;
...
index index.php index.html index.htm;
...
location / {
root /var/www/old-site/dist/;
try_files $uri $uri/ /index.php$is_args$args;
}
...
}
If Nginx couldn't find file in /var/www/old-site/dist/ directory, then it will try file in /var/www/my-site/public/ directory, but as we said to Nginx to try files with $uri $uri/ /index.php$is_args$args patterns, so Nginx will try /index.php$is_args$args in /var/www/my-site/public/ directory. not $uri
If you want to complete your fallthrough, then replace /index.php$is_args$args with /fallthrough$uri and then add the location /fallthrough { ... } with the alias key to your target directory.
https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/#root-inside-location-block

Resources