1. http {
    2. server {
    3. listen 8080;
    4. server_name localhost;
    5. location / {
    6. root /usr/local/nginx/html/www;
    7. }
    8. location /images/ {
    9. root /usr/local/nginx/html;
    10. }
    11. }
    12. }