increase the block size: “bs=xxx”
to control the progress, add “status=progress”
sudo dd if=/dev/origin of=/dev/destination bs=8192 status=progress
things to remember
increase the block size: “bs=xxx”
to control the progress, add “status=progress”
sudo dd if=/dev/origin of=/dev/destination bs=8192 status=progress
how to change the “Host” variable in the http header sent to the backend.
for example, your browser calls www.site.com but the backend expects www.website.com.
add the following two lines to the proxy rule for www.site.com:
...
set $my_host "www.website.com";
...
location / {
...
proxy_set_header Host $my_host;
proxy_pass ....