Skip to content

Instantly share code, notes, and snippets.

@ervinne13
Created February 19, 2020 06:53
Show Gist options
  • Save ervinne13/ff8188762eac02b031d9e9f0a6b3b0c0 to your computer and use it in GitHub Desktop.
Save ervinne13/ff8188762eac02b031d9e9f0a6b3b0c0 to your computer and use it in GitHub Desktop.
fastcgi_param APP_NAME "xxx my app";
fastcgi_param APP_ENV "production";
fastcgi_param APP_KEY "base64:gibberish";
fastcgi_param APP_DEBUG false;
fastcgi_param APP_URL "https://yourwebsite.com";
fastcgi_param ELASTICSEARCH_ENABLED true;
fastcgi_param ELASTICSEARCH_HOSTS "localhost:9200";
fastcgi_param LOG_CHANNEL "stack";
fastcgi_param DB_CONNECTION "mysql";
fastcgi_param DB_HOST "127.0.0.1";
fastcgi_param DB_PORT 3306;
fastcgi_param DB_DATABASE "db";
fastcgi_param DB_USERNAME "user";
fastcgi_param DB_PASSWORD "your password";
fastcgi_param MAIL_API_KEY "gibberish";
fastcgi_param JWT_SECRET "gibberish";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment