flighter

第 134 位会员

会员
个人信息
  • 加入于 2017-08-08 13:51:56
  • 最后登录时间 6年前
个人成就
  • 发表文章次数 0
  • 发布回复次数 5
  • 个人主页浏览次数 0
fecshop nginx 的配置问题6年前

@Maria [#10楼](#comment10) 我将nginx.conf中的默认目录改回/home/wwwroot/default, 也有写include conf.d/*.conf, 但是www.fecshoptest.com访问显示502错误

fecshop nginx 的配置问题6年前

将nginx.conf中的默认路径改成/www/web/fecshop/appfront/web, 访问ip可以显示echo111;exit; 但是www.fecshoptest.com访问就是502错误.

fecshop nginx 的配置问题6年前

求救, 已经搞了一个星期, 其中各种重新搭建环境, 也找了几个人看, 但还是解决不了, hosts文件配置了, nginx.conf中也包含了conf.d/*.conf, default.conf 也配置好了, nginx可以正常访问其他页面, 但是输入www.fecshoptest.com就显示 502 bad gateway, 貌似始终无法跳转到default.conf

fecshop nginx 的配置问题6年前

nginx 现在没有问题了 hosts配置了 default.conf 也配置好了 但是浏览器访问 www.fecshoptest.com 显示 502 Bad Gateway 搞了两天, 求解...

fecshop nginx 的配置问题6年前

nginx 现在没有问题了 hosts配置了 default.conf 也配置好了 但是浏览器访问 www.fecshoptest.com 显示 502 Bad Gateway 搞了两天, 求解...

fecshop nginx 的配置问题6年前

谢谢楼上 /usr/local/nginx/conf/conf.d/default.conf 已经配置好 当我在nginx.conf中添加

include /usr/local/nginx/conf/conf.d/*.conf; 之后 nginx无法启动

nginx.conf

user www www;
worker_processes auto;

error_log /data/wwwlogs/error_nginx.log crit;
pid /var/run/nginx.pid;
worker_rlimit_nofile 51200;

events {
  use epoll;
  worker_connections 51200;
  multi_accept on;
}

http {
  include mime.types;
  default_type application/octet-stream;
  server_names_hash_bucket_size 128;
  client_header_buffer_size 32k;
  large_client_header_buffers 4 32k;
  client_max_body_size 1024m;
  client_body_buffer_size 10m;
  sendfile on;
  tcp_nopush on;
  keepalive_timeout 120;
  server_tokens off;
  tcp_nodelay on;

  fastcgi_connect_timeout 300;
  fastcgi_send_timeout 300;
  fastcgi_read_timeout 300;
  fastcgi_buffer_size 64k;
  fastcgi_buffers 4 64k;
  fastcgi_busy_buffers_size 128k;
  fastcgi_temp_file_write_size 128k;
  fastcgi_intercept_errors on;

  #Gzip Compression
  gzip on;
  gzip_buffers 16 8k;
  gzip_comp_level 6;
  gzip_http_version 1.1;
  gzip_min_length 256;
  gzip_proxied any;
  gzip_vary on;
  gzip_types
    text/xml application/xml application/atom+xml application/rss+xml application/xhtml+xml image/svg+xml
    text/javascript application/javascript application/x-javascript
    text/x-json application/json application/x-web-app-manifest+json
    text/css text/plain text/x-component
    font/opentype application/x-font-ttf application/vnd.ms-fontobject
    image/x-icon;
  gzip_disable "MSIE [1-6]\.(?!.*SV1)";

  #If you have a lot of static files to serve through Nginx then caching of the files' metadata (not the actual files' contents) can save some latency.
  open_file_cache max=1000 inactive=20s;
  open_file_cache_valid 30s;
  open_file_cache_min_uses 2;
  open_file_cache_errors on;

######################## default ############################
  server {
    listen 80;
    server_name _;
    access_log /data/wwwlogs/access_nginx.log combined;
    root /data/wwwroot/default;
    index index.php index.html index.htm ;
    #error_page 404 /404.html;
    #error_page 502 /502.html;
    location /nginx_status {
      stub_status on;
      access_log off;
      allow 127.0.0.1;
      deny all;
    }
    location ~ [^/]\.php(/|$) {
      #fastcgi_pass remote_php_ip:9000;
      fastcgi_pass unix:/dev/shm/php-cgi.sock;
      fastcgi_index index.php;
      include fastcgi.conf;
    }
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
      expires 30d;
      access_log off;
    }
    location ~ .*\.(js|css)?$ {
      expires 7d;
      access_log off;
    }
    location ~ /\.ht {
      deny all;
    }
  }
  
  include /usr/local/nginx/conf/conf.d/*.conf;

########################## vhost #############################
  include vhost/*.conf;
  
}
安装时jquery.inputmask包找不到6年前

按照管理员同志的方法修改了composer.json后, 这个算不算成功? Package yiisoft/yii2-codeception is abandoned, you should avoid using it. Use codeception/codeception instead. 这句有问题么?

Your Site Analytics