如何在 Laravel Forge 上部署 CodeIgniter?
How do I deploy CodeIgniter on Laravel Forge?
我想在 Laravel Forge 平台上部署 Codeigniter,因为我喜欢该平台的简单性和自动部署特性。
我该怎么做?
这就是我的做法,以及我遇到的问题。
问题 1
因为 forge 在 Nginx 上运行,而不是在 apache 上运行,所以任何 Apache PHP 指令都将被忽略。 (我认为)。所以,我遇到的主要问题是默认配置中的 short_open_tag 指令设置为 'Off',这意味着 PHP FPM CONFIGURATION
问题2
在特定站点(不是服务器)的Nginx配置文件中替换
try_files $uri $uri/ /index.php?$query_string;
有
try_files $uri $uri/ /index.php;
此配置绝对适用于 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;
}
}
我想在 Laravel Forge 平台上部署 Codeigniter,因为我喜欢该平台的简单性和自动部署特性。 我该怎么做?
这就是我的做法,以及我遇到的问题。
问题 1 因为 forge 在 Nginx 上运行,而不是在 apache 上运行,所以任何 Apache PHP 指令都将被忽略。 (我认为)。所以,我遇到的主要问题是默认配置中的 short_open_tag 指令设置为 'Off',这意味着 PHP FPM CONFIGURATION
问题2
在特定站点(不是服务器)的Nginx配置文件中替换
try_files $uri $uri/ /index.php?$query_string;
有
try_files $uri $uri/ /index.php;
此配置绝对适用于 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;
}
}