0

I'm just create my application using symfony 3 with database (mysql) in localhost and I have domainName So how to configure my database and to configure the default route(because in localhost I configured my website with nameproject/web/app_dev.php

thank you

khalil _diouri
  • 791
  • 3
  • 12
  • 34
  • You want to know how to deploy an entire Symfony application. That's a way too big task to describe on StackOverflow. You should start with the official tutorial: http://symfony.com/doc/current/setup.html – Ben Hillier Dec 01 '16 at 11:00

1 Answers1

0

If I understand correctly, you've configured your webserver to use app_dev.php as the default IndexFile. Use app.php instead and you should be on your way.

If you use different database settings on you dev and live environments, you should be able to set those in your /app/config/parameters.yml file.

Ben Hillier
  • 2,126
  • 1
  • 10
  • 15