Skip to content

Preparation of server for GSIT

This is the steps:

  1. you must install database and PHP version + modules defined in the requirements.

  2. uncompress the archive into a web folder

  3. configure webserver

    • for NGINX:

      location /gsit/assets/ {
          alias /...tofill.../gsit/assets/;
      }
      location /gsit/ {
          include fastcgi_params;
          fastcgi_split_path_info ^/gsit(.*)(/.*)$;
          fastcgi_pass 127.0.0.1:9000; # For port
          # fastcgi_pass unix:/run/php/php8.2-fpm.sock; # for socket
          factcgi_param   HTTP_REFERER $http_referer;
          factcgi_param   SCRIPT_FILENAME /...tofill.../gsit/public/index.php$fascgi_script_name;
          factcgi_param   SERVER_NAME $host;
      }
      

    • for Apache:

      TODO
      

You are ready to install or upgrade, see next chapters !