Componentes del Addenum

Adds an Addenum to previous upload xml file squema and store in database

Estructura del Sistema

Components of the system:
  • Cakephp Version 3.7.9

  • vendor AddenumGst 1.0.0

  • debian 9.x

  • nginx

Nginx configuration

Nginx Block Server Configuration
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  # Default server configuration
  server {
          listen 80 default_server;
          listen [::]:80 default_server;

          root /var/www/html/gst/webroot;
          autoindex off;
          # Add index.php to the list if you are using PHP
          index index.php index.html index.htm index.nginx-debian.html;

          server_name _;

          location / {
                  # First attempt to serve request as file, then
                  # as directory, then fall back to displaying a 404.
                  try_files $uri $uri/ /index.php?$args;
          }

          location ~ \.php$ {
                  include snippets/fastcgi-php.conf;
                  fastcgi_pass unix:/run/php/php7.2-fpm.sock;
                  fastcgi_intercept_errors on;
                  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
          }
  }

Last update: Nov 20, 2024