Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlobaton/symfony14
Configuración Inicial para ejecutar Symfony ver 1.4
https://github.com/jlobaton/symfony14
symfony vagrant
Last synced: 19 days ago
JSON representation
Configuración Inicial para ejecutar Symfony ver 1.4
- Host: GitHub
- URL: https://github.com/jlobaton/symfony14
- Owner: jlobaton
- Created: 2016-01-04T16:01:06.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-08T21:05:24.000Z (almost 9 years ago)
- Last Synced: 2023-03-02T02:46:13.898Z (almost 2 years ago)
- Topics: symfony, vagrant
- Language: Ruby
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Symfony v1.4
Configuración Inicial para ejecutar Symfony ver 1.4 usando ```vagrant``` y la maquina virtual ```precise32```## Aplicaciones Instaladas
* Maquina Virtual 'precise32'
* Ubuntu 12.04 LTS - Kernel 3.2.0-23-generic-pae i686
* PHP 5.3.10-1ubuntu3.21:
-> libapache2-mod-php5 php5-curl php5-gd php5-mcrypt php5-mysql php-apc
* Apache/2.2.22 (Ubuntu)
* mysql Ver 14.14 Distrib 5.5.46
* mysql-client mysql-server
* git version 1.7.9.5
* PhpMyAdmin
* curl 7.22.0## Para Iniciar (Get started)
```
$ git clone git://github.com/jlobaton/symfony14.git
$ cd symfony14
```
.. editar el archivo ```Vagrantfile``` y personalizar el directorio de trabajo en la sección ```host_project* y guest_docroot``````
"host_project_folder" => "directorio/carpeta_de_trabajo",
"guest_project_folder" => "/home/vagrant/carpeta_de_trabajo",
"guest_docroot" => "/home/vagrant/carpeta_de_trabajo/web",
```...y una vez iniciado el vagrant, se empezará a instalar la maquina virtual [```precise32.box``` ](http://files.vagrantup.com/precise32.box).y todas las aplicaciones , y luego para tener acceso a la maquina inicial instalada, ejecutamos
```
$ vagrant up
```## Acceso al Servidor Apache (Access to Apache server) :
```
URL: http://33.33.333.1:8080
```## MySQL and PhpMyAdmin:
```
Username: root
Password: 1234
PhpMyAdmin URL: http://33.33.333.1:8080/phpmyadmin
```## Autor (Author)
Jesus Maria Lobaton Escobar < [email protected] >