Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.34 KB

File metadata and controls

34 lines (25 loc) · 1.34 KB
title description
Deployment
Tutorial on how to deploy web application built with Fano Framework to various web servers.

Deployment

Executable binary file permission

You need to make sure that application executable binary has proper file permission. It needs execution bit to be set.

$ chmod 744 /path/to/app.cgi

For most uses-cases, 744 permission is suffice if your web server is run as your user account. If web server run as separate user than owner of cgi file, for example as www-data. You can add www-data as group

$ sudo chown my_user:www-data /path/to/app.cgi

and then set executable binary permission to 774.

If you do not have root privilege access, such in shared hosting environment, then use permission of 755. It will make application binary executable to everyone.

Deploy to various setup