Source: The Way We Were (1973) – IMDb
Adrift (2018)

Source: Adrift (2018) – IMDb
virtualization – Convert my physical Operating System to a VirtualBox Disk
Teatro Lirico (Milan)
Casa di Riposo per Musicisti Giuseppe Verdi (Milan) – 2019 All You Need to Know BEFORE You Go (with Photos) – TripAdvisor
Francesco Maria Piave
Quinn Kelsey
American baritone Quinn Kelsey made his Royal Opera debut in 2016 as Giorgio Germont (La traviata) and has since returned to sing Count di Luna (Il trovatore).
Kelsey was born in Honolulu. He represented the USA in the 2005 BBC Cardiff Singer of the World Competition. In 2008 he made his debut with the Metropolitan Opera, New York, as Schaunard (La bohème). He has since sung for many major international opera companies, including Lyric Opera of Chicago, San Francisco Opera, Santa Fe Opera, Canadian Opera Company, Zürich Opera, Hawaii Opera Theater, Norwegian National Opera, Paris Opéra, Semperoper Dresden, Rome Opera, Deutsche Oper Berlin, Frankfurt Opera and for the Bregenz and Edinburgh festivals. He has sung Germont for the Metropolitan Opera, Lyric Opera of Chicago, San Francisco Opera, Canadian Opera Company, Zürich Opera and in Seoul. Other Verdi roles include Rigoletto, Ezio (Attila), Count di Luna (Il trovatore), Montfort (Les Vêpres siciliennes), Paolo Albiani (Simon Boccanegra), Amonasro (Aida) and Falstaff.
Kelsey’s other repertory includes Enrico Ashton (Lucia di Lammermoor), Zurga (Les Pêcheurs de perles), Marcello (La bohème), Forester (The Cunning Little Vixen), Athanaël (Thaïs) and Sancho Panza (Don Quichotte). He has performed in concert and recital in the USA, the UK, Germany and Norway, in such repertory as Beethoven’s Symphony no.9, Mahler’s Symphony no.8, Orff’s Carmina Burana and Szymanowski’s Stabat mater.
Create and upload an Ubuntu Linux VHD in Azure
This article assumes that you have already installed an Ubuntu Linux operating system to a virtual hard disk. Multiple tools exist to create .vhd files, for example a virtualization solution such as Hyper-V. For instructions, see Install the Hyper-V Role and Configure a Virtual Machine.
Ubuntu installation notes
- Please see also General Linux Installation Notes for more tips on preparing Linux for Azure.
- The VHDX format is not supported in Azure, only fixed VHD. You can convert the disk to VHD format using Hyper-V Manager or the convert-vhd cmdlet.
- When installing the Linux system it is recommended that you use standard partitions rather than LVM (often the default for many installations). This will avoid LVM name conflicts with cloned VMs, particularly if an OS disk ever needs to be attached to another VM for troubleshooting. LVM or RAID may be used on data disks if preferred.
- Do not configure a swap partition on the OS disk. The Linux agent can be configured to create a swap file on the temporary resource disk. More information about this can be found in the steps below.
- All VHDs on Azure must have a virtual size aligned to 1MB. When converting from a raw disk to VHD you must ensure that the raw disk size is a multiple of 1MB before conversion. See Linux Installation Notes for more information.
Source: Create and upload an Ubuntu Linux VHD in Azure | Microsoft Docs
Moodle – Reverse proxy frontend
A reverse proxy or surrogate is a proxy server that is installed in a server network. Typically, reverse proxies are used in front of Web servers. All connections coming from the Internet addressed to one of the Web servers are routed through the proxy server, which may either deal with the request itself or pass the request wholly or partially to the main web servers.
Contents
Requirements
- You need ssl for authentication.
- You run Apache 2.2 both in the backend and the frontend.
- You run RHEL 5.2 Application stack 2 in the backend (php 5.2.6 + mysql 5 + apache 2.2.10).
- You run Apache 2.2 as the frontend in any modern OS using trainer.moodle.org as url (My frontend apache runs on Windows 2003).
- You installed moodle 1.9 to run from “/” the internal http server with SSL support on 10.1.1.24.
- You have an external facing apache using SSL.
Configuration for the external server
http.conf
(snip) ProxyPass / http://10.1.1.24/ ProxyPassReverse / http://10.1.1.24/ ProxyPreserveHost On (snip) Include conf/http-ssl.conf
http-ssl.conf
(snip) ProxyPass / http://10.1.1.24/ ProxyPassReverse / http://10.1.1.24/ (snip)
config.php
<?php /// Moodle Configuration File unset($CFG); $CFG->dbtype = 'mysql'; $CFG->dbhost = 'localhost'; $CFG->dbname = 'moodle'; $CFG->dbuser = 'moodleuser'; $CFG->dbpass = 'XXXXXXXX'; $CFG->dbpersist = false; $CFG->prefix = 'mdl_'; $CFG->wwwroot = 'http://trainer.moodle.org'; $CFG->dirroot = '/var/www/moodle'; $CFG->dataroot = '/opt/moodle_data'; $CFG->admin = 'admin'; $CFG->directorypermissions = 00777; // try 02777 on a server in Safe Mode require_once("$CFG->dirroot/lib/setup.php"); // MAKE SURE WHEN YOU EDIT THIS FILE THAT THERE ARE NO SPACES, BLANK LINES, // RETURNS, OR ANYTHING ELSE AFTER THE TWO CHARACTERS ON THE NEXT LINE. ?>
The tricky part
- Go to Administration ► Security ► HTTP security and set Use HTTPS for loginsloginhttps to true.
- You need to have the previous setup ready or you may lock yourself out of the server.
Moodle migration
Source: Moodle migration – MoodleDocs
Modify the default Moodle directory name and URL
How To Use Apache as a Reverse Proxy with mod_proxy on Ubuntu 16.04
- sudo a2enmod proxy
- sudo a2enmod proxy_http
- sudo a2enmod proxy_balancer
- sudo a2enmod lbmethod_byrequests
Source: How To Use Apache as a Reverse Proxy with mod_proxy on Ubuntu 16.04 | DigitalOcean