您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

13 行
207 B

  1. server {
  2. listen 80 default_server;
  3. root /var/www/wx;
  4. index index.html index.htm index.nginx-debian.html;
  5. autoindex on;
  6. server_name wx.home wx.reyni.co;
  7. location / {
  8. try_files $uri $uri/ =404;
  9. }
  10. }