Format UTF8
dpkg-reconfigure locales
Mise à l'heure
dpkg-reconfigure tzdata
Format UTF8
dpkg-reconfigure locales
Mise à l'heure
dpkg-reconfigure tzdata
@echo off | |
if [%1]==[] ( | |
@echo "Project name missing !!" | |
goto eof | |
) | |
if exist %~s1\NUL ( | |
@echo "Project Exist !!" | |
goto eof | |
) |
mkdir myorga
cd myorga
mkdir certs
mkdir crl
mkdir newcerts
mkdir private
mkdir req
#!/bin/bash | |
# ============================================================================= | |
# Application : Génération de certificat utilisateur | |
# Fichier : domain.sh | |
# Description : Script de génération de certificat utilisateur | |
# Version : 1.0 | |
# ============================================================================= | |
# Historique : | |
# 29/06/2017 : 1.0 diyfr - creation | |
# ============================================================================= |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="cache-control" content="max-age=0" /> | |
<meta http-equiv="cache-control" content="no-cache" /> | |
<meta http-equiv="expires" content="0" /> | |
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" /> | |
<meta http-equiv="pragma" content="no-cache" /> |
import { Pipe, PipeTransform } from '@angular/core'; | |
@Pipe({ name: 'keys' }) | |
export class KeysPipe implements PipeTransform { | |
transform(value, args: string[]): any { | |
return this.convert(value); | |
} | |
public convert = function (value) { |
sudo apt-get install git
Get package from gogs (https://gogs.io/docs/installation/install_from_packages)[https://gogs.io/docs/installation/install_from_packages]
and decompress-it
Be carefull with roles (don't use root account and prefer an user account or specifically an new user like 'git')
move into gogs folder and start
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="cache-control" content="max-age=0" /> | |
<meta http-equiv="cache-control" content="no-cache" /> | |
<meta http-equiv="expires" content="0" /> | |
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" /> | |
<meta http-equiv="pragma" content="no-cache" /> |
{ | |
"vehicle_journeys" : [{ | |
"codes" : [], | |
"name" : "866324", | |
"journey_pattern" : { | |
"id" : "journey_pattern:5756", | |
"name" : "journey_pattern:5756" | |
}, | |
"disruptions" : [{ | |
"internal" : true, |
<IfModule mod_ssl.c> | |
<VirtualHost *:443> | |
ServerName subdomain.domain.ovh | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www/html | |
# Include external config for specific locationInclude | |
Include /home/userapp/apache.conf/web.conf | |
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn, | |
# error, crit, alert, emerg. | |
# It is also possible to configure the loglevel for particular |