A basic security setup for your Apache webserver.
If there is the possibility of configuring Apache on the server-side, perhaps in your Virtual Machine, or on a
In the Ubuntu console type:
~:$ cd /etc/apache2/conf.d
~:$ sudo vi security
In other environments, you can add the following lines to httpd.conf
~:$ sudo vi /etc/apache2/httpd.conf
Add the following code
ServerTokens Prod
ServerSignature Off
TraceEnable Off
Check if the configuration returns no errors.
~:$ sudo apache2ctl configtest
Reload the web server configuration.
~:$ sudo service apache2 reload
Test the changes with the following command:
curl -I http://nomedominio/
HTTP/1.1 200 OK
Date: Wed, 09 Dec 2015 17:57:36 GMT
Server: Apache
Cache-Control: max-age=3600
Expires: Wed, 09 Dec 2015 18:57:36 GMT
Content-Type: text/html; charset=UTF-8
A FastAPI, SQLAlchemy & Uvicorn to fetch a Google Sheet A FastAPI, SQLAlchemy & Uvicorn to fetch a Google Sheet… Read More
A webtool in Python Flask that creates an LDAP user and his TrueNAS shares pool in ISCSI or NFS. There… Read More
A Terraform configuration that provisions the following infrastructure: A VPC with: Public subnets for external resources. Private subnets for internal… Read More
This website uses cookies.
Read More