How to test varnish configuration before loading
sudo varnishd -Cf /etc/varnish/default.vcl
How to test varnish configuration before loading
sudo varnishd -Cf /etc/varnish/default.vcl
To read an image directly from url and then reads its size. you can use urllib.request and PIL aka Pillow.
If you don’t have pillow installed. you can use:
python -m pip install Pillow
python -m pip install --upgrade pip
import urllib.request from PIL import Image url = 'http://www.example.com/my_image_is_not_your_image.png' image = Image.open(urllib.request.urlopen(url)) width, height = image.size print (width,height)
When using print in python with some multibyte character or when decoding from another encoding you might encounter this fatal error:
Traceback (most recent call last): File "skynet.py", line 28, in print(skyname_wakeup_word) UnicodeEncodeError: 'cp932' codec can't encode character '\xa1' in position 62: illegal multibyte sequence
skyname_wakeup_word.encode('cp932',"ignore")
You simply use t and c flags followed by config file
sudo nginx -tc /etc/nginx/nginx.conf
This can give you output like this when ok:
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
t flag according to man nginx means : Do not run, just test the configuration file. nginx checks the configuration file syntax and then tries to open files referenced in the configuration file.
c flag means: Use an alternative configuration file. the config file path should come after the c flag.
Why you should use this instead of restart? or reload? because when you do sudo service nginx restart and your config file is broken you’ll affect the whole server and if you have multiple websites that means all sites go down possibly because of some little curly boi ; . reload might not do anything when there is error. to be safe always test config before reloading or restarting. even if you do simple changes to main nginx config or sites configs.