changed app to use json config for pipeline steps
readme command line usage - to specify pipeline file name readme updated to include reasoning behind the project use native golang sqlite RunScriptCommand named in functionMap removed unused functions removed unused functions run script and pipeline example renamed functions to drop the word script and add pipeline verb
This commit is contained in:
parent
bd7cee720a
commit
924954d0ff
49 changed files with 2059 additions and 101 deletions
30
files/ctl/nginx/default.conf
Normal file
30
files/ctl/nginx/default.conf
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
server {
|
||||
listen 80;
|
||||
|
||||
# Redirect all HTTP requests to HTTPS
|
||||
# return 301 https://$host$request_uri;
|
||||
|
||||
index index.php index.html;
|
||||
error_log /var/log/nginx/error.log;
|
||||
access_log /var/log/nginx/access.log;
|
||||
root /var/www/public;
|
||||
location ~ \.php$ {
|
||||
try_files $uri =404;
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
fastcgi_pass localhost:9000;
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
fastcgi_param HTTPS on;
|
||||
fastcgi_param HTTP_X_FORWARDED_PROTO https;
|
||||
}
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$query_string;
|
||||
gzip_static on;
|
||||
}
|
||||
location /storage/ {
|
||||
alias /var/www/storage/app/public/;
|
||||
autoindex on;
|
||||
}
|
||||
}
|
||||
8
files/ctl/php/local.ini
Normal file
8
files/ctl/php/local.ini
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
; PHP Configuration
|
||||
; extension=pdo_pgsql.so
|
||||
; extension=pgsql.so
|
||||
upload_max_filesize = 100M
|
||||
post_max_size = 100M
|
||||
max_execution_time = 300
|
||||
memory_limit = 256M
|
||||
; Add any other PHP configurations you need
|
||||
Loading…
Add table
Add a link
Reference in a new issue