Azuracast desatendido

mkdir -p /var/azuracast cd /var/azuracast curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/main/docker.sh > docker.sh chmod a+x docker.sh # To install the "Stable" release channel instead of "Rolling Release", uncomment this line: # yes ‘Y’ | ./docker.sh setup-release yes » | ./docker.sh install

Actualizar

cd /var/azuracast ./docker.sh update-self ./docker.sh update

docker 2

docker run -d -p 8080:80 nextcloud

Laravel Symbol

<?php $url = ‘../storage/app/public’; $enlace = ‘storage’; symlink($url,$enlace); echo readlink($enlace);

nextcloud.conf

Alias /nextcloud "/var/www/nextcloud/" <Directory /var/www/nextcloud/> Options +FollowSymlinks AllowOverride All <IfModule mod_dav.c> Dav off </IfModule> SetEnv HOME /var/www/nextcloud SetEnv HTTP_HOME /var/www/nextcloud </Directory>

ejemplo hooks

import { Component, OnInit, DoCheck, OnDestroy } from ‘@angular/core’; @Component({ selector: ‘componente’, templateUrl: ‘./componente.component.html’ }) export class ComponenteComponent implements OnInit, DoCheck, OnDestroy { ngOnInit(){ console.log("OnInit ejecutado"); } ngDoCheck(){ console.log("DoCheck ejecutado"); } ngOnDestroy(){ console.log("OnDestroy ejecutado"); } }