DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Last call! Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workloads.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

Related

  • The Future Is Headless: Building Modern E-Commerce Experiences With Magento 2 and GraphQL
  • These 37 Items Are Required for Magento 2 Launch
  • How to Rescue Your Magento 2 Project

Trending

  • The Cypress Edge: Next-Level Testing Strategies for React Developers
  • Measuring the Impact of AI on Software Engineering Productivity
  • How Large Tech Companies Architect Resilient Systems for Millions of Users
  • Artificial Intelligence, Real Consequences: Balancing Good vs Evil AI [Infographic]

How To Configure Varnish In Apache With Magento 2

Looking for a quick and hassle-free configuration guide? Click here to find out how to configure Magento 2 and slid with great speed.

By 
Kandarp Bhatt user avatar
Kandarp Bhatt
·
Jun. 29, 20 · Tutorial
Likes (4)
Comment
Save
Tweet
Share
10.3K Views

Join the DZone community and get the full member experience.

Join For Free

Magento is a Content Management System(CMS) built in PHP, Zend framework, and MySQL database. It’s a free and open-source system. If you are in eCommerce business then Magento will be a very important eCommerce web application for you that runs with many other open-source applications like, Apache, MySQL, and many more.

Now defining further, Apache is one of the most popular web server software which validates a computer to host one or more websites that can be examined over the internet using a web browser. In 1995, The Apache Group released its first version of Apache. The digital presence of a business is increasing day by day and in the era of high-speed internet your website speed matters to increase the revenue numbers.

Are you suffering from the speed with Magento 2 and the apache server? Here we came up with the solution on how to boost your Magento store by configuring Varnish. The combination of Varnish and Magento 2 is incredibly popular for speeding up your website’s overall performance. So, let’s get started.

See Below Step by Step Guide to Configure Varnish With Magento 2 and Apache

1) Install Varnish on Server

  • Connect your server using putty or terminal and run below command to install varnish

sudo apt-get install varnish

  • Once you install varnish you can check installed varnish version by running below command

varnishd -V

2) Configure Varnish in Magento

Step 1

  • Login to Magento admin panel 
  • Go to stores > Configuration > General > Web > Base URLs (Secure)  
  • Change the Offloader header to X-Forwarded-Proto from SSL_OFFLOADED and save the configuration

Step 2

  • Go to Stores -> Configuration -> Advanced -> System -> Full Page Cache
  • Change the Caching Application to Varnish Cache (Recommended) from the Built-in Cache.
  • Flush Magento cache

3) Add Varnish.vcl on Server

  • Login to ssh with root user and Rename the file [MAGENTO_ROOT]/var/varnish.vcl to [MAGENTO_ROOT]/var/default.vcl
  • Go to the location of varnish by the following command

cd /etc/varnish/

  • Take the backup of the original default.vcl, file, and put the default.vcl file which is exported from Magento.

mv default.vcl default.vcl.original

mv /var/www/html/magento/var/default.vcl.

4) Check DAEMON_OPTS

  • Open the /etc/default/varnish, locate for the DAEMON_OPTS. It should display like below
HTTP
 




x
17
9


 
1
DAEMON_OPTS=”-a :80 \
2
T localhost:6082 \
3
f /etc/varnish/default.vcl \
4
p thread_pool_min=1 \
5
p thread_pool_max=1500 \
6
p http_resp_hdr_len=42000 \
7
p http_resp_size=98304 \
8
S /etc/varnish/secret \
9
s malloc,768m”



5) Change Varnish Port From 6081 to 80

  • To change the varnish port from 6081 to 80, we need to edit the system service configuration as follows:
Java
 




xxxxxxxxxx
1


 
1
Sudo nano /etc/systemd/system/multi-user.target.wants/varnish.service



  • The above command will open a file in which you need to find the line as below:
Java
 




xxxxxxxxxx
1


 
1
ExecStart=/usr/sbin/varnishd -j unix,user=vcache -F -a :6081 -T 127.0.0.1:6082 -f
2
/etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,256m



  • And comment it with the hash symbol as below:
Java
 




xxxxxxxxxx
1


 
1
#ExecStart=/usr/sbin/varnishd -j unix,user=vcache -F -a :6081 -T 127.0.0.1:6082 -f
2
/etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,256m



  • Below this line, add a line as following:
Java
 




xxxxxxxxxx
1


 
1
ExecStart=/usr/sbin/varnishd -j unix,user=vcache -F -a :80 -T 127.0.0.1:6082 -f
2
/etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,1536m



6) Change the Apache Listening Port From 80 to 8080

● Open the Apache ports configuration file and change it as follows:

Java
 




xxxxxxxxxx
1


 
1
Nano /etc/apache2/ports.conf
2
Listen 80 -> Listen 8080
3
Nano /etc/apache2/sites-available/magento.conf
4
<VirtualHost *:80> -> <VirtualHost *:8080>



7) Restart Varnish and Apache Service

  • Now we need to run following commands for restart varnish and apache service and also for check their status:
Java
 




xxxxxxxxxx
1


 
1
sudo systemctl daemon-reload
2
sudo service apache2 restart
3
sudo service apache2 status
4
sudo service varnish restart
5
sudo service varnish status



  • You can check the ports by the following command:

sudo netstat -ltnp | grep :80

8) Configure Varnish for the HTTPS or SSL

  • To make the varnish work with the HTTPS or SSL, you need to do reverse proxy. For reverse proxy you must enable the following modes:
HTTP
 




xxxxxxxxxx
1


 
1
sudo a2enmod SSL
2
sudo a2enmod proxy
3
sudo a2enmod proxy_balancer 
4
sudo a2enmod proxy_http



  • To enable reverse proxy to do as follows:

sudo nano /etc/apache2/sites-available/magento-ssl.conf

  • Locate the SSLEngine on and paste the following lines before the SSLEngine on
HTTP
 




xxxxxxxxxx
1


 
1
ProxyPreserveHost On
2
ProxyPass / http://127.0.0.1:80/
3
RequestHeader set X-Forwarded-Port “443”
4
RequestHeader set X-Forwarded-Proto “https”



  • Restart the apache by this command:

sudo service apache2 restart

  • Also, check the status of apache by this command:

sudo service apache2 status

9) Verify Varnish Cache Is Working or Not

  • To verify varnish is working or not, you can check it by the following command:

curl -I -v –location-trusted ‘https://www.example.com’

  • Using the below command will provide you with an updating list of URL requests going to the back-end (Misses).

varnishtop -i BereqURL

  • The below command will provide you with an updated list of ALL requests.

Varnishtop -i ReqURL

10) How to Remove (Uninstall) Varnish?

  • Sudo apt-get purge –auto-remove varnish
  • In apache and conf file, change the port to 80 as it was there before.
HTTP
 




xxxxxxxxxx
1


 
1
nano /etc/apache2/ports.conf
2
Listen 8080 -> Listen 80
3
nano /etc/apache2/sites-available/magento.conf
4
<VirtualHost *:8080> -> <VirtualHost *:80>
5
sudo service apache2 restart



Wrapping Up

We hope that the above-discussed steps will provide you with configuring varnish in Apache with Magento 2. Make sure when you are following these steps in Magento 2 the platform must support varnish 4.x and 5.x. Whether your site is unresponsive or not working properly, varnish continues to serve cached content to visitors. These benefits of varnish are enough to make you configure it in Apache with Magento 2.

The combination of varnish and Magento will benefit you in various ways, from increasing your website’s overall speed to enhancing customer experience.

Still facing issues in configuring then you can always contact professional web developing agency for the best outcomes.

Magento

Published at DZone with permission of Kandarp Bhatt. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • The Future Is Headless: Building Modern E-Commerce Experiences With Magento 2 and GraphQL
  • These 37 Items Are Required for Magento 2 Launch
  • How to Rescue Your Magento 2 Project

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!