-
-
Save whitemike889/2b23c789aaf503344bb5e265d08bd851 to your computer and use it in GitHub Desktop.
EC-CUBE on AWS (インストール編)
This file contains hidden or 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
8 # User specific aliases and functions | |
9 | |
10 export JAVA_HOME=/usr/lib/jvm/jre | |
11 export AWS_HOME=/opt/aws | |
12 export AWS_RDS_HOME=$AWS_HOME/apitools/rds | |
13 export AWS_CREDENTIAL_FILE=$AWS_HOME/credential-file-path | |
14 export EC2_REGION=ap-northeast-1 | |
15 export PATH=$PATH:$HOME/bin:$JAVA_HOME/bin:$AWS_RDS_HOME/bin |
This file contains hidden or 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
1 AWSAccessKeyId={Write your AWS access ID} | |
2 AWSSecretKey={Write your AWS secret key} |
This file contains hidden or 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
291 # symbolic links and aliases may be used to point to other locations. | |
292 # | |
293 DocumentRoot "/home/eccube/html" | |
294 | |
295 # | |
296 # Each directory to which Apache has access can be configured with respect |
This file contains hidden or 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
576 if (PEAR::isError($connection)) { | |
577 return $connection; | |
578 } | |
579 | |
580 $this->_doQuery("SET time_zone = '+9:00'", false, $connection); | |
581 $this->connection = $connection; | |
582 $this->connected_dsn = $this->dsn; | |
583 $this->connected_database_name = ''; |
This file contains hidden or 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
291 # symbolic links and aliases may be used to point to other locations. | |
292 # | |
293 DocumentRoot "/var/www/html" | |
294 | |
295 # | |
296 # Each directory to which Apache has access can be configured with respect |
This file contains hidden or 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
576 if (PEAR::isError($connection)) { | |
577 return $connection; | |
578 } | |
579 | |
580 $this->connection = $connection; | |
581 $this->connected_dsn = $this->dsn; | |
582 $this->connected_database_name = ''; |
This file contains hidden or 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
953 [Date] | |
954 ; Defines the default timezone used by the date functions | |
955 ; http://www.php.net/manual/en/datetime.configuration.php | |
956 ;date.timezone = | |
957 | |
958 ; http://www.php.net/manual/en/datetime.configuration.php |
This file contains hidden or 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
953 [Date] | |
954 ; Defines the default timezone used by the date functions | |
955 ; http://www.php.net/manual/en/datetime.configuration.php | |
956 date.timezone = Asia/Tokyo | |
957 | |
958 ; http://www.php.net/manual/en/datetime.configuration.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment