Skip to content

Instantly share code, notes, and snippets.

@kachina
Created March 13, 2012 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kachina/2027612 to your computer and use it in GitHub Desktop.
Save kachina/2027612 to your computer and use it in GitHub Desktop.
EC-CUBE on AWS (インストール編)
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
1 AWSAccessKeyId={Write your AWS access ID}
2 AWSSecretKey={Write your AWS secret key}
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
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 = '';
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
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 = '';
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
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