0

我想在 Laravel Forge 平台上部署 Codeigniter,因为我喜欢该平台的简单性和自动部署特性。我该怎么做?

4

2 回答 2

0

这就是我的做法,以及我在做这件事时遇到的问题。

问题 1 因为 forge 在 Nginx 而不是 apache 上运行,所以任何 Apache PHP 指令都将被忽略。(我认为)。所以,我遇到的主要问题是默认配置中的short_open_tag指令设置为“关闭”,这意味着这个 PHP FPM CONFIGURATION

问题 2

在特定于站点(不是服务器)的 Nginx 配置文件中替换

try_files $uri $uri/ /index.php?$query_string;

try_files $uri $uri/ /index.php;
于 2015-07-22T00:07:35.593 回答
0

此配置绝对适用于 2019 年 5 月 Laravel Forge 上的 Codeigniter

server {
    listen 80 default_server;
    listen [::]:80 default_server;
    server_name default;




root /home/forge/default/;

# FORGE SSL (DO NOT REMOVE!)
# ssl_certificate;
# ssl_certificate_key;

ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers 'REPLACE WITH YOURS';
ssl_prefer_server_ciphers on;
ssl_dhparam /etc/nginx/dhparams.pem;

add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";

#added tto try to get around the 'no input file specified' error
autoindex on;

index index.html index.htm index.php;

charset utf-8;

# FORGE CONFIG (DOT NOT REMOVE!)
include forge-conf/default/server/*;

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

location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt  { access_log off; log_not_found off; }

access_log off;
error_log  /var/log/nginx/default-error.log error;

error_page 404 /index.php;

location ~ \.php$ {
    include fastcgi.conf;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
    fastcgi_index index.php;
    include fastcgi_params;
}

location ~ /\.ht {
    deny all;
}

}

于 2019-05-20T10:06:39.383 回答