PartDB: Difference between revisions

From FlowerHouseWiki
Line 56: Line 56:
<p>Change the following settings:</p>
<p>Change the following settings:</p>
<syntaxhighlight lang="console">
<syntaxhighlight lang="console">
memory_limit = 100M
memory_limit = 128M
upload_max_filesize = 100M
upload_max_filesize = 100M
post_max_size = 100M
post_max_size = 100M

Revision as of 21:22, 28 February 2021

Froeling.jpg

Network


IP: 192.168.88.??
MAC: ??
Domain: parts.flowerhouse.at

System


OS: Debian Buster
RAM: 512MB
Cores: 1
Privileged: No

The PartDB-LXC is reachable under 192.168.88.?? which is located in the ServerVLAN.

The subdomain is parts.flowerhouse.at which is handled by the ReverseProxy.

Basic Setup

Install the required packages:

apt install apache2 php php-mysql php-curl libapache2-mod-php php-opcache php-gettext

Configure Apache

Open the following file:

nano /etc/apache2/apache2.conf

And change this part:

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

to this:

<Directory /var/www/>
        Options -Indexes
        AllowOverride All
        Require all granted
</Directory>

Restart the apache service:

systemctl restart apache2

Configure PHP

Edit php.ini:

nano /etc/php/7.3/apache2/php.ini

Change the following settings:

memory_limit = 128M
upload_max_filesize = 100M
post_max_size = 100M

Sources