Posts

Kodak Mini Model Zm1

Image
  Battery spec Type Model No. Volt Capacity (mAh) Max Dimensions (mm) Weight V Typical Minimal Thickness Width Length g **2045 PL552045 3.7 460 450 5.5 20 44.5 9.4

How to change the TIME ZONE in Azure WEB APP

Image
 How to change the TIME ZONE in  Azure WEB APP in configuration, application settings add the entry  WEBSITE_TIME_ZONE: Europe/Paris List of time zones  wiki

Using Ansible to manage Azure VM error msg packaging installed

Using the Ansible to automatize your taks in Azure. IF you are using Ansible and get this error msg. fatal: [localhost]: FAILED! => {"changed": false, "msg": "Do you have packaging installed? Try `pip install packaging`- No module named packaging.version"}

Do you need test you WAF / FRONT DOOR

Checking your WAF /  Front DOOR / Cloudflare is working Using the this in your request will get a block and you can see in the log. https://www.yourdomain.com/?a=b%20AND%201=1 ;-)

DSC Azure automation Linux

Have a problem in your DSC configuration. "Failed to apply the configuration. These resources produced errors: [nxFile]MyFolder. Detailed error information can be found in the log file.\"}"]

Nginx solution for check http_stub_status_module

Nginx add internal configuration to use http_stub_status_module

Nginx Reverse configuration

Simple Nginx proxy reverse configuration add the file proxy.conf in /etc/nginx/conf.d/ proxy_http_version 1.1; proxy_set_header Host               $http_host; proxy_set_header X-Real-IP          $remote_addr; proxy_set_header X-Forwarded-For    $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto  $scheme; proxy_set_header Upgrade            $http_upgrade; proxy_set_header Connection         "Upgrade";  Configuration for the domain simple server { listen 80; listen [::]:80; server_name example.com; location / {   include conf.d/proxy.conf; proxy_pass http://192.168.123.321:3000/; } }