Skip to content

Instantly share code, notes, and snippets.

@frenchcharly
frenchcharly / onlyofficeDocsLXCBuster.md
Created February 1, 2022 16:06 — forked from tavinus/onlyofficeDocsLXCBuster.md
OnlyOffice Docs into a LXC Debian 10
@frenchcharly
frenchcharly / wp_auto_install.sh
Created December 5, 2021 04:42 — forked from nicomollet/wp_auto_install.sh
WP-CLI auto install script
#!/bin/bash
# Default options
LOCALE="fr_FR"
DB_HOST='localhost'
VIRUSTOTAL_KEY='YOUR_KEY'
printf "Name of the project? cf My Project: "
read PROJECT_NAME
@frenchcharly
frenchcharly / r6s.md
Last active June 10, 2020 16:43
Playlist R6S pour les vieux
@frenchcharly
frenchcharly / docker-compose.yml
Created June 24, 2019 16:44
[Docker][Wordpress] Local Development Container (WP 5.2, PhP 7.2, Apache, MySQL 5.7)
version: '3'
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
@frenchcharly
frenchcharly / .htaccess
Last active April 4, 2018 14:12 — forked from ScottPhillips/.htaccess
[Common .htaccess Redirects] 301 & rewrite rules
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/