Go to file
2024-11-23 01:10:23 +01:00
.vscode Move vscode folder up by one to include everything in the workspace 2024-11-18 19:53:09 +01:00
shimatta_kenkyusho Merge branch 'develop' into bugfix/import-fuckups 2024-11-19 20:41:15 +01:00
.dockerignore tinkered around to get this app running inside a container using alpine and socket based psql 2023-12-10 23:09:33 +01:00
.gitignore Add compose setup 2024-11-17 16:37:23 +01:00
compose.yaml Add restart policy to autostart the containers after boot 2024-11-23 01:09:57 +01:00
Dockerfile Add the /healthcheck path which returns an HTTP200 OK response for checking the helath of the container after startup 2024-11-17 19:10:28 +01:00
entrypoint_self_hosted.sh Add self hosted entrypoint file for easier debugging which will use the integrated django server to serve all files 2024-11-17 17:33:45 +01:00
entrypoint.sh Make gunicorn listen to all incoming IPs on Port 8000. This is necessary to use a spearate net with the postgres container. 2024-11-17 16:36:36 +01:00
example.env Add readme. Rename example env, to unhide it in the fileexplorer. 2024-11-23 01:10:23 +01:00
README.md Add readme. Rename example env, to unhide it in the fileexplorer. 2024-11-23 01:10:23 +01:00
requirements.txt Update reqirements.txt for Django 5.1.3 2024-11-18 20:19:38 +01:00
start_docker_compose_interactive.sh Add compose setup 2024-11-17 16:37:23 +01:00
start_server.sh tinkered around to get this app running inside a container using alpine and socket based psql 2023-12-10 23:09:33 +01:00

Shimatta Kenkyusho Parts Database

Installation

Prerequisites

Shimatta Kenkyusho (しまった・研究所) is a Django based web application. It is highly recommended to run it using the supplied docker setup. This removes the need of any special installation on the host system. This guide assumes, that nginx is running on the host system and can serve as a reverse proxy and webserver. For easiest download, it is recommended to clone the desired release with git

Install the requirements:

For Debian / Ubuntu:

# apt-get update
# apt-get install docker docker-compose-plugin nginx git

For Arch based Systems:

# pacman -S nginx docker docker-compose git

Setup Shimatta Kenkyusho

Clone this repository:

$ git clone https://git.shimatta.de/mhu/shimatta-kenkyusho.git

Note: Shimatta Kenkyusho is currently not stable yet and the newest verison is in the develop branch. This will change once actual releases are done and merged to the master branch. You will be alble to get the latest stable version from the master branch or a repsective tag. For now, the develop is recommended.

Change directory into the shimatta-kenkyusho folder cloned by git.

Copy the example.env file to .env and edit it according to your needs:

The following settings are required to be adapted:

  • DJANGO_STATIC_VOL: The directory the application will extract its static data into, which needs to be served by your webserver. See the example reverse proxy setup for more details.
  • DJANGO_MEDIA_VOL: The directory all media files like images uploaded to the application are stored here. This folder must be served by your webserver on the configured media URL.
  • PGDATA_VOL: The directory, the postgres database will store its files.
  • PORT: The TCP/IP port that the whole setup will listen on. Use a reverse proxy to forward to this port. Do not directly expose it to the internet!
  • DJANGO_SECRET_KEY: Provide a secret, and randomly generated key. Do not share this with anybody!
  • DJANGO_ALLOWED_HOST: Set this to the domain, the application will be reached at. E.g: lab.example.com
  • DJANGO_MEDIA_URL: Set this to the media URL at which your webserver serves the DJANGO_MEDIA_VOL diretory. E.g: media.lab.example.com/ Note the slash at the end. It is important.

Once the environment is set up, the docker containers can be built and started. Run

$ docker compose build

This will generate two container images:

  1. shimatta-kenkyusho-shimatta-kenkyusho-web: The django application
  2. postgres: A alpine based docker container containing the postgres database.

Start the application as a service with

$ docker compose up -d

Note: The initial startup might need a minute because the whole database etc needs to be initialized first.

Use

$ docker ps

to check if the shimatta-kenkyusho-shimatta-kenkyusho-db and the shimatta-kenkyusho-shimatta-kenkyusho-web container are running and report a healthy status.

Setup Initial Login User

TODO

Example Reverse Proxy Setup Using nginx

Once the setup is configured the reverse proxy setup is needed. This setup serves three purposes:

  1. Redirect incoming requests to the django application running on the port PORT configured in the .env
  2. Serve static files ath the URL: (e.g. lab.example.com/static). See ALLOWED_HOST configuration.
  3. Serve the media volume at the media URL (e.g. media.lab.example.com). See DJANGO_MEDIA_URL

Example nginx configuration for nginx >v2.25 with SSL and http2 / http3 support:

# Force redirection from http to https for application
server {
        listen 80;
        listen [::]:80;
        server_name lab.example.com; # This must match your ALLOWED_HOST. Adapt domain.
        allow all;

        return 301 https://lab.example.com$request_uri; # Adapt domain
}

# Force redirection from http to https for media url
server {
        listen 80;
        listen [::]:80;
        server_name media.lab.example.com; # Adapt domain name according to DJANGO_MEDIA_URL
        allow all;
        return 301 https://media.lab.example.com$request_uri; # Adapt domain name
}

# Reverse Proxy for application
server {
   listen       443 ssl;
   listen       [::]:443 ssl;
   http2        on;


   # Add this for HTTP3. If your nginx is older than 2.25 this might not be available
######################################################################################
   # listen       443 quic reuseport;
   # listen       [::]:443 quic reuseport;
   # Enable QUIC and HTTP/3
   # ssl_early_data on;
   # add_header Alt-Svc 'h3=":443"; ma=86400';
#######################################################################################

    server_name  lab.example.com; # Adapt domain

    # Use letsencrypt as SSL certificate provider.  
    ssl_certificate      /etc/letsencrypt/live/lab.example.com/fullchain.pem;
    ssl_certificate_key  /etc/letsencrypt/live/lab.example.com/privkey.pem;

    ssl_protocols TLSv1.3;
    ssl_prefer_server_ciphers on;

    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;

    ssl_ciphers  HIGH:!aNULL:!MD5;

    location / {
        allow all;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP  $remote_addr;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_pass http://127.0.0.1:8000;  # Adapt PORT from .env
    }

    location /static/ {
        # Adapt path to static volume here. Note the slash at the end
        alias /path/to/DJANGO_STATIC_VOL/; 
        allow all;
    }

    client_max_body_size 60m;

}

# Serve the media files
server {
        listen       443 ssl;
        listen       [::]:443 ssl;
   # Add this for HTTP3. If your nginx is older than 2.25 this might not be available
######################################################################################
        # listen       443 quic reuseport;
        # listen       [::]:443 quic reuseport;
        # Enable QUIC and HTTP/3
        # ssl_early_data on;
        # add_header Alt-Svc 'h3=":443"; ma=86400';
#######################################################################################
        http2        on;

        server_name  media.lab.example.com; # Adapt according to DJANGO_MEDIA_URL

    # Use letsencrypt as SSL certificate provider. 
    ssl_certificate      /etc/letsencrypt/live/media.lab.example.com/fullchain.pem;
    ssl_certificate_key  /etc/letsencrypt/live/media.lab.example.com/privkey.pem;

    ssl_protocols TLSv1.3;
    ssl_prefer_server_ciphers on;

    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;

        ssl_ciphers  HIGH:!aNULL:!MD5;
        error_page 502 /lab_down.html;

        allow all;
        root /path/to /DJANGO_MEDIA_VOL/; # Adapt this to the volume provided.
}

Congratulations. Your shimatta kenkyusho installation is now fully setup.

Note that, the compose.yaml contains a restart-policy. By default the contianers will restart automatically, even after a reboot of the host machine, if the docker service is enabled.

Backup and Restore

TODO

Debugging and Development

Todo