Skip to content

Instantly share code, notes, and snippets.

@tkuchiki
Last active February 17, 2021 19:41
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkuchiki/5699419 to your computer and use it in GitHub Desktop.
Save tkuchiki/5699419 to your computer and use it in GitHub Desktop.
Kohana nginx configuration
server {
listen 80;
server_name example.com;
access_log /path/to/access.log main;
error_log /path/to/error.log;
root /path/to/kohana/web;
location / {
index index.php;
if (-f $request_filename) {
break;
}
try_files $uri $uri/ @kohana;
}
# kohana ディレクトリ以下に 全て設置している初期状態の時のみ必要
#location ~* ^/(modules|application|system) {
# return 403;
#}
location ~* \.php$ {
try_files $uri $uri/ @kohana;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fastcgi_param SCRIPT_FILENAME /path/to/fastcgi_script_name;
include fastcgi_params;
}
location @kohana {
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
include fastcgi_params;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment