Changes between Version 3 and Version 4 of bertoldi:franquicias

Show
Ignore:
Timestamp:
10/22/24 16:48:01 (6 months ago)
Author:
roberto
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • bertoldi:franquicias

    v3 v4  
    4646[[Image(04.jpeg,700px)]] 
    4747 
     483) En el servidor de Franquicias 192.168.70.89 crear enlace simbólico para la nueva franquicia: 
    4849 
     50{{{ 
     51cd /var/www/html/ 
     52ln -s /var/www/html/regente/ fvgbelgrano 
     53}}} 
    4954 
     55[[Image(06.jpeg,500px)]] 
    5056 
     574) Editar los archivos de Xampp para publicar la nueva franquicia: 
     58 
     59Editar el archivo httpd.conf: 
     60{{{ 
     61cd /opt/lampp/etc/ 
     62sudo pico httpd.conf 
     63}}} 
     64 
     65Al final del archivo agregar: 
     66{{{ 
     67Alias /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 
     77Editar el archivo httpd-xampp.conf y agregar en los Alias al final (buscar hay un alias por cada sitio publicado): 
     78{{{ 
     79sudo pico extra/httpd-xampp.conf 
     80Alias /fvgbelgrano "/var/www/html/fvgbelgrano" 
     81 
     82<Directory "/var/www/html/fvgbelgrano"> 
     83    AllowOverride AuthConfig Limit 
     84    Require all granted 
     85</Directory> 
     86}}}