Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
I’ve looked for an answer also and i found that i’ve need to activate header also like this:
sudo a2enmod headers
Hello there,
mod_expires should come with the default Apache installation, but you can check if the module is both installed and loaded using these commands
- apachectl -M | grep expires
If mod_expires is not enabled or installed you can run the following command to install mod_expires on Ubuntu/Debian systems
- sudo a2enmod mod_expires
Then you need to restart Apache
- service apache2 restart
That’s it, you now have mod_expires enabled.
Hope that this helps!