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

default.conf 370B

12345678910111213141516
  1. server {
  2. listen 80;
  3. index index.php index.html;
  4. root /var/www/public;
  5. location / {
  6. try_files $uri $uri/ /index.php?$query_string;
  7. }
  8. location ~ \.php$ {
  9. fastcgi_pass pasca-app:9000;
  10. fastcgi_index index.php;
  11. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  12. include fastcgi_params;
  13. }
  14. }