2021-05-12 09:34:54 +02:00
2019-10-13 16:11:57 +02:00
2021-05-10 16:26:38 +02:00
2021-05-12 09:34:54 +02:00
2019-10-13 16:11:57 +02:00
2019-02-12 16:20:24 +01:00
2021-05-12 08:36:24 +02:00
2019-02-12 16:20:24 +01:00
2019-02-12 16:20:24 +01:00
2021-05-12 09:25:06 +02:00

figureslibres.cc

Figureslibres.cc powered by grav in docker environement (nginx, php:7.0-fpm)

Install docker

sudo pacman -S docker docker-compose docker-machine

Clone this repos

this will clone this repos (main docker environement) and the grav source code

git clone --recursive -o figli https://figureslibres.io/gogs/bachir/docker-figureslibres.cc-grav.git

Hosts and reverse proxy

add to your /etc/hosts :

127.0.0.1	dev.figureslibres.cc

configure your vhosts to add a reverse proxy that will redirect the domain dev.figureslibres.com to our container

nginx

edit /etc/nginx/sites-available/dev.figureslibres.cc.conf with :

server {
  listen 80;
  server_name dev.figureslibres.cc;
  location / {
    proxy_pass http://127.0.0.1:8882;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_buffer_size          128k;
    proxy_buffers              4 256k;
    proxy_busy_buffers_size    256k;
  }
}

then activate the vhost

sudo ln -s /etc/nginx/sites-available/dev.figureslibres.cc.conf /etc/nginx/sites-enabled/
sudo systemctl restart nginx

Apache

<Virtualhost *:80>
   ServerName dev.figuresmibres.cc
   ProxyPass / http://127.0.0.1:8882/
   ProxyPassReverse / http://127.0.0.1:8882/
   ProxyRequests Off
</Virtualhost>

Docker

start daemon

launch the docker daemon

sudo systemctl start docker

build

only before the first run (may take some time)

sudo docker-compose build

run

then each time you want to launch the app

sudo docker-compose up -d

check if containers are running

sudo docker-compose ps

check the logs

sudo docker-compose logs -f

install grav

sudo docker exec -it grav_figureslibres.cc_php_1 bash

install grav

# log into the php container
sudo docker exec -it figureslibrescc_php_1 bash
# install grav using cli
bin/grav install

fixing permissions

# log into the php container
sudo docker exec -it figureslibrescc_php_1 bashchmod +x fixperms.sh
# run the script
./fixeperms.sh

Pages

fill the /user/pages with your contents or you'll get a 404 error

Visualize

You can now visit http://dev.figureslibres.cc or simply http://localhost:8882 on your browser

Updating code

git pull figli master
# then update all submodules
git submodule update --recursive --checkout
S
Description
No description provided
Readme GPL-3.0
60 KiB
Languages
Dockerfile 88.7%
Shell 11.3%