Nginx static resource configuration Nginx apache nginx php nginx rewrite

Source: Internet
Author: User
NGINX.CONF configuration:

Add to:

server {        listen       default_server;        server_name  static.test.com;    Location/{            proxy_set_header Host $host;             Proxy_set_header x-forwarded-for $remote _addr;    Root  d:/java/static/back;        }   }      server {        listen       ;        server_name  page.test.com;    Location/{            proxy_set_header Host $host;             Proxy_set_header x-forwarded-for $remote _addr;    Root  d:/java/static/app;        }   }      server {        listen       ;        server_name  test.test.com;    Location/{            proxy_set_header Host $host;             Proxy_set_header x-forwarded-for $remote _addr;    Root  d:/java/static/test;        }   }

Hosts add

127.0.0.1 localhost test.test.com page.test.com static.test.com

Put a test picture in each directory and access the test through a URL.

Test access appears 404!

Through the Task Manager to find the Nginx process a lot more, and kill not die!!!

Restart

.....

Nginx startup is two processes, configure the update to ensure that the effective, kill kill, and then start.


The above describes the Nginx static resource configuration, including the nginx aspects of the content, I hope that the PHP tutorial interested in a friend helpful.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.