我的本地网络上有2台Linux服务器。我使用带有IP 192.168.1.111的PC作为应用程序服务器在端口8080上运行我的节点应用程序。作为Web服务器,我在具有IP 192.168.1.100的PC上使用NGINX并将其配置为反向代理。
在浏览器的“网络”选项卡中,我看到所有文件都已正确提供(状态200正常)。但是不显示所有静态文件。
静态文件(css,js,图片,字体)位于/var/www/domain.com/public
知道为什么会出现这个问题吗?
这是我的nginx.conf
文件:
user www-data;
worker_processes 2;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/domain.com/access.log;
error_log /var/log/nginx/domain.com/error.log;
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
此处为/etc/nginx/sites-enabled/domain.com
文件
upstream appserver {
server 192.168.1.111:8080;
}
server {
listen 80;
server_name domain.com www.domain.com;
root /var/www/domain.com/public;
location ~ ^/(images/|js/|css/|media/|favicon.ico) {
#access_log off;
expires off;
}
location / {
proxy_pass http://appserver;
include /etc/nginx/proxy_params;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
这里是access.log
文件
192.168.1.105 - - [26/Jan/2017:21:33:54 +0100] "GET /images/shop.png HTTP/1.1" 200 13643 "http://192.168.1.100/home" "Mozilla/5.0 (X11; Linux x86_64) ..."
192.168.1.105 - - [26/Jan/2017:21:33:54 +0100] "GET /images/code.png HTTP/1.1" 200 13443 "http://192.168.1.100/home" "Mozilla/5.0 (X11; Linux x86_64) ..."
192.168.1.105 - - [26/Jan/2017:21:33:54 +0100] "GET /images/line.png HTTP/1.1" 200 13643 "http://192.168.1.100/home" "Mozilla/5.0 (X11; Linux x86_64) ..."
答案 0 :(得分:1)
我对正则表达式和nginx并不是很好,但这就是我这样做的方式,它对我有用。 基本上将目录和文件路径发送到获取URL,然后将其传递给别名公共路径;您似乎获取该位置,除了关闭“过期”之外没有做任何事情。
<强>代码:强>
location ~ ^/(?<dir>[^/]+)/(?<file>[^/]+)$ {
gzip on;
alias /nodeproj/public/$dir/$file;
}
答案 1 :(得分:0)
我发布的配置是正确的。解决此问题的方法实际上是更改了专业版上静态文件的根文件夹的所有权。
之前的许可:
drwxr-xr-x 2 www-data root 4096 Jan 26 15:01 css/
drwxr-xr-x 2 www-data root 4096 Jan 26 15:01 fonts/
drwxr-xr-x 2 www-data root 4096 Jan 26 15:01 images/
drwxr-xr-x 2 www-data root 4096 Jan 26 16:17 js/
webmaster@proxy:~$
(这可行)之后的许可:
drwxrwxr-x 2 webmaster webmaster 4096 Jan 26 00:00 css/
drwxrwxr-x 2 webmaster webmaster 4096 Jan 13 00:15 fonts/
drwxrwxr-x 2 webmaster webmaster 4096 Jan 13 00:15 images/
drwxrwxr-x 2 webmaster webmaster 4096 Jan 26 16:50 js/
webmaster@proxy:~$
要更改所有权并设置正确的权限,请运行以下命令:
sudo chmod 775 /var/www/domain.com/public/ -R
sudo chown -R webmaster:webmaster /var/www/domain.com/public/