Configure Windows partition in grub List all devices lsblk Look at the UUID of your Windows 10 partition, for exemple: sudo blkid /dev/sda2
Mount remote drive via SSH sshfs -o allow_other {user}@{ip}:{remote_dir} {local_dir} allow_other => Allow other users than the mounter (i.e. root) to access the share. sudo mkdir /mnt/chicago_vps sudo sshfs -o allow_other zoidqc@107.172.11.251:/ /mnt/chicago_vps
Host flask api in Nginx using UWSGI In this exemple of configuration. All communications sent to localhost/api will be sent to the uwsgi socket. Dependencies $ apt-get install python python-pip build-essential python-dev uwsgi-plugin-python $ pip install uwsgi Directories
Add this to config file Make sure the destination folder exist <configuration> <system.diagnostics> <sources> <source name="System.ServiceModel" switchValue="Information, ActivityTracing"
Dependencies $ pacman -S python-pip nginx uwsgi-plugin-python uwsgi Directories $ /etc/nginx/ (nginx directory) $ /etc/uwsgi/ (uwsgi directory) $ /usr/share/nginx/uswgi_test/ (app directory)