当前位置:论坛首页 > 第三方应用

【已解答】宝塔一键安装包安装魔众题库系统

2021-8-13 14:04 [复制链接] 1 2826

环境要求
操作系统
Linux/Unix 或 Windows
软件环境
Laravel 5.1 的运行环境,Apache/Nginx , PHP 5.5.9+ 或 PHP 7+ , MySQL 5.0+
安装步骤
  • 配置 apache/nginx 服务器,请将网站的根目录配置到 <网站目录>/public;
  • 访问 http://www.example.com/install.php
  • 使用安装引导向导进行安装;
Nginx参考配置
  1. server {
  2.     listen       80;
  3.     server_name  demo.tecmz.com;
  4.     charset utf-8;
  5.     index index.php index.html;
  6.     root /var/www/html/demo.tecmz.com/public;
  7.     autoindex off;

  8.     location ^~ /.git {
  9.         deny all;
  10.     }

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

  14.     location ~ \.php$ {
  15.         fastcgi_pass   127.0.0.1:9000;
  16.         fastcgi_index  index.php;
  17.         fastcgi_param  PHP_VALUE  "open_basedir=/var/www/html/demo.tecmz.com/:/tmp/:/var/tmp/";
  18.         fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
  19.         include fastcgi_params;
  20.     }

  21.     location ~ \.(gif|jpg|jpeg|png|bmp|ico|css|js)$ {
  22.        expires max;
  23.     }

  24.     location ~* \.(eot|ttf|woff|woff2)$ {
  25.         add_header Access-Control-Allow-Origin '*';
  26.     }

  27. }
复制代码
Apache参考配置
  1. <VirtualHost *:80>
  2.       ServerName www.example.com
  3.       DocumentRoot d:/wwwroot/example.com/public
  4. </VirtualHost>
复制代码


使用道具 举报 只看该作者 回复
发表于 2021-8-13 14:17:30 | 显示全部楼层
  1.     location / {
  2.         try_files $uri $uri/ /index.php?$query_string;
  3.     }
复制代码


这个尽量放到伪静态中
使用道具 举报 回复 支持 反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

普通问题处理

论坛响应时间:72小时

问题处理方式:排队(仅解答)

工作时间:白班:9:00 - 18:00

紧急运维服务

响应时间:3分钟

问题处理方式:宝塔专家1对1服务

工作时间:工作日:9:00 - 18:30

宝塔专业团队为您解决服务器疑难问题

立即付费处理

工作时间:09:00至24:00

快速回复 返回顶部 返回列表