elastic commands apache mod-rewrite amazon-web-services url-rewriting elastic-beanstalk

apache - commands - ejecutar comandos en AWS ebextensions



ebextensions commands (1)

Siempre revise sus .ebextensions antes de convertirlos en Elastic Beanstalk. Un recurso que utilizo para verificar mis archivos http://www.yamllint.com/

Si está intentando modificar la configuración de Apache, le sugiero que use "archivos" en ebextensions. Lee mas...

Creo que estás tratando de lograr lo siguiente:

files: "/etc/httpd/conf.d/enable_mod_rewrite.conf": mode: "644" owner: root group: root content: | AllowOverride All

Recibo el siguiente error al intentar cargar mi instancia en aws elasticbeanstalk:

The configuration file .ebextensions/setup.config in application version t5 contains invalid YAML or JSON. YAML exception: while scanning a quoted scalar in "<reader>", line 3, column 18: command: "aws s3 cp s3:elasticbeanstalk-u ... ^ found unexpected end of stream in "<reader>", line 5, column 1: ^ , JSON exception: Unexpected character (c) at position 0.. Update the configuration file.

A continuación se muestra lo que se incluye en el archivo setup.config :

container_commands: 01_setup_apache: command: "aws s3 cp s3:elasticbeanstalk-us-west-2-273610000489/enable_mod_rewrite.conf /etc/httpd/co

Estoy trabajando con AWS beanstalk y, como no puedo modificar el archivo httdp conf en AllowOverride All para limpiar mi URL con la regla de reescritura, me sugirieron que trabaje con ebextensions: http: //docs.aws.amazon .com / elasticbeanstalk / latest / dg / customize-containers.html

Actualizar:

Creo que lo que corre el problema es este:

RewriteEngine On

ubicado en htaccess. casi como si no pudiera aceptar rewritenegine ser encendido.

Actualización2:

En /var/log/httpd/access_log

En /var/log/eb-activity.log :

Command CMD-TailLogs succeeded. [2015-07-10T10:25:09.784Z] INFO [25589] - [CMD-TailLogs] : Starting activity... [2015-07-10T10:25:10.206Z] INFO [25589] - [CMD-TailLogs/AddonsBefore] : Starting activity... [2015-07-10T10:25:10.207Z] INFO [25589] - [CMD-TailLogs/AddonsBefore] : Completed activity. [2015-07-10T10:25:10.207Z] INFO [25589] - [CMD-TailLogs/TailLogs] : Starting activity... [2015-07-10T10:25:10.207Z] INFO [25589] - [CMD-TailLogs/TailLogs/TailLogs] : Starting activity...

En /var/log/eb-commandprocessor.log

[2015-07-10T10:37:19.644Z] DEBUG [25873] : Checking if the command processor should execute... [2015-07-10T10:37:19.645Z] DEBUG [25873] : Checking whether the command is applicable to instance (i-80bbbd77).. [2015-07-10T10:37:19.645Z] INFO [25873] : Command is applicable to this instance (i-80bbbd77).. [2015-07-10T10:37:19.645Z] DEBUG [25873] : Checking if the received command stage is valid.. [2015-07-10T10:37:19.645Z] INFO [25873] : No stage_num in command. Valid stage.. [2015-07-10T10:37:19.645Z] INFO [25873] : Command processor should execute command. [2015-07-10T10:37:19.645Z] DEBUG [25873] : Storing current stage.. [2015-07-10T10:37:19.645Z] DEBUG [25873] : Stage_num does not exist. Not saving null stage. Returning.. [2015-07-10T10:37:19.646Z] INFO [25873] : Executing command: CMD-TailLogs... [2015-07-10T10:37:19.646Z] DEBUG [25873] : Reading config file: /etc/elasticbeanstalk/.aws-eb-stack.properties [2015-07-10T10:37:19.647Z] DEBUG [25873] : Refreshing metadata.. [2015-07-10T10:37:20.061Z] DEBUG [25873] : Refreshed environment metadata. [2015-07-10T10:37:20.061Z] DEBUG [25873] : Retrieving metadata for key: AWS::ElasticBeanstalk::Ext||_ContainerConfigFileContent||commands.. [2015-07-10T10:37:20.062Z] DEBUG [25873] : Retrieving metadata for key: AWS::ElasticBeanstalk::Ext||_API||_Commands.. [2015-07-10T10:37:20.064Z] INFO [25873] : Found enabled addons: ["logpublish"]. [2015-07-10T10:37:20.066Z] INFO [25873] : Updating Command definition of addon logpublish. [2015-07-10T10:37:20.066Z] DEBUG [25873] : Loaded definition of Command CMD-TailLogs. [2015-07-10T10:37:20.066Z] INFO [25873] : Executing command CMD-TailLogs activities... [2015-07-10T10:37:20.066Z] DEBUG [25873] : Setting environment variables.. [2015-07-10T10:37:20.066Z] INFO [25873] : Running AddonsBefore for command CMD-TailLogs... [2015-07-10T10:37:20.067Z] DEBUG [25873] : Running stages of Command CMD-TailLogs from stage 0 to stage 0... [2015-07-10T10:37:20.067Z] INFO [25873] : Running stage 0 of command CMD-TailLogs... [2015-07-10T10:37:20.067Z] DEBUG [25873] : Loaded 1 actions for stage 0. [2015-07-10T10:37:20.067Z] INFO [25873] : Running 1 of 1 actions: TailLogs...

actualización 3: