配置nginx虚拟主机conf文件,二级域名无法访问

安装报错 · resetl · 于 5年前 发布 · 2957 次阅读
 server {
  listen 80;
  listen 443 ssl http2;
  ssl_certificate /usr/local/nginx/conf/ssl/www.9lezhuang.com.crt;
  ssl_certificate_key /usr/local/nginx/conf/ssl/www.9lezhuang.com.key;
  ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
  ssl_prefer_server_ciphers on;
  ssl_session_timeout 10m;
  ssl_session_cache builtin:1000 shared:SSL:10m;
  ssl_buffer_size 1400;
  add_header Strict-Transport-Security max-age=15768000;
  ssl_stapling on;
  ssl_stapling_verify on;
server_name www.9lezhuang.com;
  access_log /data/wwwlogs/www.9lezhuang.com_nginx.log combined;
  index index.html index.htm index.php;
root /data/wwwroot/9le/appfront/web;
  if ($host != www.9lezhuang.com) {  return 301 $scheme://www.9lezhuang.com$request_uri;  }
  include /usr/local/nginx/conf/rewrite/fecshop.conf;
  #error_page 404 /404.html;
  #error_page 502 /502.html;
  location ~ [^/]\.php(/|$) {
    #fastcgi_pass remote_php_ip:9000;
	fastcgi_split_path_info ^(.+\.php)(/.+)$;  
    fastcgi_pass unix:/dev/shm/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
	fastcgi_param   PATH_INFO   $fastcgi_path_info;  
	fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;  
  }

  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;
  }
  location / {
       if (!-e $request_filename) {
             rewrite . /index.php last;
  
  
  
server_name reset.9lezhuang.com;
  access_log /data/wwwlogs/www.9lezhuang.com_nginx.log combined;
  index index.html index.htm index.php;
root /data/wwwroot/9le/appadmin/web;
 
 
 
 阿里云主机二级域名也解析了,访问reset.9lezhuang.com,没有用,直接跳转到www.9lezhuang.com。
共收到 4 条回复 问题提问
resetl#25年前 0 个赞

@Fecshop #1楼 我研究过了,但还是没有头绪,我之前在您修改的default.conf上修改,还是没用。

Fecmall#35年前 0 个赞

@resetl #2楼 照葫芦画瓢,自己学习

resetl#45年前 0 个赞

@Fecshop #3楼 画着呢:joy: :joy: :joy: :joy: :joy:

添加回复 (需要登录)
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册
Your Site Analytics