fcgi
fcgi
fcgi
is an implmentation of the FastCGI specification
Installation
Add this to your application's shard.yml
:
dependencies:
fcgi:
github: blazerw/fcgi
Usage
require "fcgi"
Basically, you create an app using your favorite Crystal framework (Kemal, Amber, and coming soon, Lucky). Figure out what's needed to boot your app and framework. See examples
to get started. These examples work on Dreamhost slices and require a certain configuration. Current configuration:
Domain to host: mysubdomain.mydomain.com
Do you want the www in your URL?: Remove WWW
Run this domain under the user: username
Web Directory: /home/username/mysubdomain.mydomain.com
PHP Mode: PHP 7.0 FastCGI # Yes, PHP Mode.
Automatically upgrade PHP: true
HTTPS: true
Extra Web Security?: false
Passenger: false
Enable CloudFlare on this domain?: false
Google Apps: false
Add .htaccess
file into directory mysubdomain.mydomain.com
:
<IfModule mod_fastcgi.c>
AddHandler fastcgi-script .fcgi
</IfModule>
<IfModule mod_fcgid.c>
AddHandler fcgid-script .fcgi
</IfModule>
Options +FollowSymLinks +ExecCGI
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ dispatch.fcgi/$1 [QSA,L]
ErrorDocument 500 "500 Main: FCGI application failed to start properly!"
ErrorDocument 501 "501 Main: FCGI application failed to start properly!"
ErrorDocument 502 "502 Main: FCGI application failed to start properly!"
ErrorDocument 503 "503 Main: FCGI application failed to start properly!"
You must change dispatch.fcgi
to the name of your compiled crystal web application.
Examples
Development
TODO List:
- Write some tests (steal fcgi data from verbose logs)
- Kill verbose logs
- Switch logging to a
Logger
from lazyputs
ing around.
Contributing
- Fork it ( https://github.com/blazerw/fcgi/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- [blazerw] Randy Wilson - creator, maintainer
Repository
fcgi
Owner
Statistic
- 2
- 0
- 0
- 0
- 0
- over 6 years ago
- April 4, 2018
License
MIT License
Links
Synced at
Wed, 06 Nov 2024 08:00:32 GMT
Languages