Code Monkey home page Code Monkey logo

cilindros's Introduction

Proyecto Cilindros

Aplicación desarrollada paso a paso en video, puedes encontrar los videos en Youtube y en http://laravel.com.mx

Para configurar varios hosts virtuales, puedes usar un código similar al siguiente al final del archivo de configuración de Apache, si estás usando MAMP, se encuentra en C:/MAMP/conf/apache/httpd.conf:

## MIS HOSTS VIRTUALES #

NameVirtualHost *:80

# Proyecto llamado cilindros
<VirtualHost *:80>
    DocumentRoot "C:\Proyectos\cilindros\public"
    ServerName cilindros.app

    <Directory "C:\Proyectos\cilindros\public">
        AllowOverride All
    </Directory>
</VirtualHost>

# Otro proyecto llamado cartera
<VirtualHost *:80>
    DocumentRoot "C:\Proyectos\cartera\public"
    ServerName cartera.app

    <Directory "C:\Proyectos\cartera\public">
        AllowOverride All
    </Directory>
</VirtualHost>

## FIN DE MIS HOST VIRTUALES #

Luego, configuras el archivo hosts, si estás usando Windows, está ubicado en C:/Windows/System32/drivers/etc/hosts, recuerda ejecutar sublime text 2 (o el editor que uses) como administrador o no te dejará guardar los cambios:

## MIS HOSTNAME #

127.0.0.1 cilindros.app
127.0.0.1 cartera.app

## FIN DE MIS HOSTNAME #

Por último, reinicias apache (detener el servidor y volver a iniciarlo).

Listo, ahora ya puedes acceder desde el navegador tanto a http://cilindros.app como a http://cartera.app

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.