| | 57 | 4) Editar los archivos de Xampp para publicar la nueva franquicia: |
| | 58 | |
| | 59 | Editar el archivo httpd.conf: |
| | 60 | {{{ |
| | 61 | cd /opt/lampp/etc/ |
| | 62 | sudo pico httpd.conf |
| | 63 | }}} |
| | 64 | |
| | 65 | Al final del archivo agregar: |
| | 66 | {{{ |
| | 67 | Alias /fvgbelgrano "/var/www/html/fvgbelgrano/" |
| | 68 | <Directory "/var/www/html/fvgbelgrano"> |
| | 69 | Options Indexes MultiViews |
| | 70 | AllowOverride None |
| | 71 | Order allow,deny |
| | 72 | Allow from all |
| | 73 | DirectoryIndex indexfvgbelgrano.html |
| | 74 | </Directory> |
| | 75 | }}} |
| | 76 | |
| | 77 | Editar el archivo httpd-xampp.conf y agregar en los Alias al final (buscar hay un alias por cada sitio publicado): |
| | 78 | {{{ |
| | 79 | sudo pico extra/httpd-xampp.conf |
| | 80 | Alias /fvgbelgrano "/var/www/html/fvgbelgrano" |
| | 81 | |
| | 82 | <Directory "/var/www/html/fvgbelgrano"> |
| | 83 | AllowOverride AuthConfig Limit |
| | 84 | Require all granted |
| | 85 | </Directory> |
| | 86 | }}} |