GoogleCloudPlatform / appengine-symfony-starter-project

Symfony Starter Project on Google App Engine
Apache License 2.0
42 stars 13 forks source link

remove Log Dir on production #9

Open bshaffer opened 8 years ago

bshaffer commented 8 years ago

There is no reason to have a log directory on Google Cloud Storage, since all logs are sent to the cloud logger (via SysLog presumably).

We need to verify this is set up and logging correctly before removal, however.

pdugas commented 6 years ago

From app.yaml in a little test I'm working on...

skip_files:
  - (.*)/*.swp
  - (.*/)?Tests\/(.*)
  - .git/*
  - .gitignore
  - .gitmodules
  - README.md
  - app/config/config_dev.yml
  - app/config/config_test.yml
  - app/config/parameters.yml.dist
  - app/config/routing_dev.yml.dist
  - bin/*
  - phpunit.*
  - tests/*
  - var/cache/dev/*
  - var/cache/test/*
  - var/logs/*
  - var/sessions/*
  - web/.htaccess
  - web/app_dev.php
  - web/config.php