@JS's Notes

Site with notes from my work.

Seo Panel on Ubuntu 20.04

2020-09-20 System SEO @JS

My test platform: Ubuntu Server 20.04 and SEO Panel 4.6.0

SEO Panel is a free and open source control panel that can be used for search engine optimization of your websites.

Requirements: user with root privileges or non-root user with sudo privileges.

Apache, PHP and MariaDB installation
$ sudo apt install apache2 mariadb-server php php-mysql php-curl php-json php-cgi \
                    libapache2-mod-php php-xmlrpc php-gd php-mbstring php php-common php-xmlrpc \
                    php-soap php-xml php-intl php-cli php-ldap php-zip php-readline php-imap \
                    php-tidy php-intl unzip wget -y
Continue reading

How to optimize your site using Gzip compression on the Nginx server

2019-10-05 System SEO @JS

My test platform: CentOS Linux release 7.6.1810 (Core)

Requirements: user with root privileges or non-root user with sudo privileges.

Edit the configuration file /etc/nginx/nginx.conf and add as shown below:

server {
    [...]
    gzip on;
    gzip_vary on;
    gzip_min_length 10240;
    gzip_proxied expired no-cache no-store private auth;
    gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml;
    gzip_disable "MSIE [1-6]\.";
    ...
}
Continue reading