server {
listen 8001;
location / {
root /home/david/htdocs/SentiMap;
index index.html index.php;
}
location /images/ {
root /data;
}
}
server {
listen api.udic.cs.nchu.edu.tw;
root /data/up1;
location / {
proxy_pass http://localhost:32772;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}