BookStack的Nginx設定檔

server {
  server_name docs.site.com;

  root /var/www/docs/BookStack/public;
  index index.php index.html;

  location / {
    try_files $uri $uri/ /index.php?$query_string;
  }

  location ~ \.php$ {
    include snippets/fastcgi-php.conf;
    fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
  }

}

修訂版本 #3
由 tainan 建立於 5 三月 2024 23:07:26
由 tainan 更新於 6 三月 2024 06:50:32