使用node.jsconfigurationnginx proxypass

我正在尝试使用ProxyPassfunction使用nginx运行node.js应用程序; 我的node.js应用程序在localhost:8888执行,这是我的nginxconfiguration文件

server { listen 80; ## listen for ipv4; this line is default and implied server_name mywebsiteexample.com:80; location / { proxy_pass http://localhost:8888/; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } location /doc/ { alias /usr/share/doc/; autoindex on; allow 127.0.0.1; deny all; } } 

然后当我去我的网页(www.mywebsiteexample.com); 服务器响应好,但没有find相关的文件(CSS,图像等)。