iredmail increase mail attachment size
Default mail attachment size in iredmail is 10 MB. To increase mail attachment size, login to server as user root, run following…
Default mail attachment size in iredmail is 10 MB. To increase mail attachment size, login to server as user root, run following…
It is better to make web site available with one URL. Many sites work with both wwww and non-www (naked domain) urls.…
When your Nginx web server is running behind a reverse proxy, you will see IP of the reverse proxy server as visitor…
To install Nginx web server on CentOS 8, create repo vi /etc/yum.repos.d/nginx.repo Add [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1 Install nginx with…
When you are using Reverse Proxy like Nginx, Haproxy or Amazon ELB in front of web server and web server use HTTP…
Nginx Location Directive is used to route request to correct files. Match Exact match is used to match an exact URL. server…
To password protect a website, you need to install htpasswd utility. On Ubuntu/Debian, you can install it with the command Now create…
I recently added nginx as front end for apache. Now nginx serve static content, PHP requests are peroxided to Apache. Nginx frontend,…
By default Nginx listens on all IP address on a server. To make nginx listen on specific IP address, edit nginx configuration…
Create a service file for gunicorn root@django:~# cat /etc/systemd/system/gunicorn2.service [Unit] Description=gunicorn2 daemon Requires=gunicorn2.socket After=network.target [Service] User=ubuntu Group=www-data WorkingDirectory=/home/ubuntu/myapp/wagtail2 ExecStart=/home/ubuntu/myapp/venv/bin/gunicorn \ –access-logfile -…
To run Laravel Application on a subfolder of a website, use the following configuration. If you run the Laravel application as the…
Here is Nginx configuration for a laravel application server { listen 80; server_name www.domain.com; access_log /var/log/nginx/domain.com.log; root /home/domain.com/html/public; index index.html index.php; access_log…