https NGINX上的静态内容

时间:2016-07-20 16:07:42

标签: nginx vps

我已经从同事那里继承了配置NGINX的VPS的配置。我目前可以通过http和https提供动态内容,但是当https被指定为连接类型时,不会加载静态内容(如图像,javascript和css)(显示为404)。

由于我继承了配置,我不太确定从哪里开始,虽然我没有成功尝试NGINX自己的指南,在http指令下向nginx.conf添加位置块,指定要使用的根。

http{
  include       /etc/nginx/mime.types;
  default_type  application/octet-stream;
  server_tokens off;
  ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    location / {
      root /var/www/;
    }
}

我也会在禁用NGINX的情况下获得相同的行为,但我在同事的笔记中找不到任何可能提供内容的文档。

非常感谢任何正确方向的指针!

nginx.conf

user              nginx;
worker_processes  1;
error_log         /var/log/nginx/error.log;
pid               /var/run/nginx.pid;

events {
    worker_connections  1024;
}



http {

    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;
    server_tokens off;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request "'
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    autoindex off;
    map $scheme $fastcgi_https { ## Detect when HTTPS is used
        default off;
        https on;
    }


client_header_timeout 3000;
client_body_timeout 3000;
fastcgi_read_timeout 3000;
client_max_body_size 32m;
fastcgi_buffers 8 128k;
fastcgi_buffer_size 128k;

    keepalive_timeout  10;

gzip  on;
gzip_http_version 1.1;
gzip_vary on;
gzip_comp_level 6;
gzip_proxied any;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript text/x-js;
gzip_buffers 16 8k;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
    # Load config files from the /etc/nginx/conf.d directory
    include /etc/nginx/conf.d/*.conf;

}

1 个答案:

答案 0 :(得分:0)

拖网搜索我发现NGINX已经向服务器添加了一个命令>> x-accel-internal的位置块。

通过将conf / templates / default / domain / service中的模板proxy.php复制到custom / domain / service并注释掉该命令,nginx在通过SSH重新创建配置文件后再次正确提供内容

long long