Skip to content

Instantly share code, notes, and snippets.

View Qadadain's full-sized avatar
🎯
Focusing

Quentin ADADAIN Qadadain

🎯
Focusing
View GitHub Profile
@Qadadain
Qadadain / docker-compose.yml
Created November 14, 2021 18:31
Prestashop + mysql + adminer config ARM
version: '3.1'
services:
prestashop:
image: prestashop/prestashop:1.7-7.3-apache
restart: always
volumes:
- ./:/var/www/html
- ./modules:/var/www/html/modules
- ./themes:/var/www/html/themes
@Qadadain
Qadadain / Departments.php
Last active March 11, 2021 15:57
French departments whit name code and slug
<?php
$departements[] = [
"Ain" => [
"name" => "Ain",
"code" => "01",
"slug" => "ain"
],
"Aisne" => [
"name" => "Aisne",
@Qadadain
Qadadain / Nginx basic configuration for symfony
Created August 25, 2020 09:30
Nginx basic configuration for symfony
server {
server_name monnomdedomaine.com www.monnomdedomaine.com;
root /var/www/nomduprojet/public;
index index index.php;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/index.php(/|$) {