forked from ToolJet/ToolJet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: change location rule in nginx conf (ToolJet#320)
* change location rule in nginx conf; enable std out logging * use packer variables to set ami name, instance type and ami region
- Loading branch information
1 parent
de76116
commit 80d5ec5
Showing
4 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ PG_DB=tooljet_prod | |
PG_USER=<pg user name> | ||
PG_HOST=<pg host> | ||
PG_PASS=<pg user password> | ||
RAILS_LOG_TO_STDOUT=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
variable "ami_name" { | ||
type = string | ||
} | ||
|
||
variable "instance_type" { | ||
type = string | ||
default = "t2.medium" | ||
} | ||
|
||
variable "ami_region" { | ||
type = string | ||
default = "us-west-2" | ||
} |