标签:pass root ati process url location cti nginx processes
#user nobody;events {
worker_connections 1024;
}
http {
sendfile on;
server {
listen 7080;
server_name localhost;
location ^~ /demo {
proxy_pass http://127.0.0.1/;
}
location / {
root html;
index index.html index.htm;
}
}
}
标签:pass root ati process url location cti nginx processes
原文地址:http://blog.51cto.com/13172370/2131436