Activity log for bug #1947459

Date Who What changed Old value New value Message
2021-10-16 15:56:56 psl bug added bug
2021-10-18 23:02:12 Bryce Harrington tags server-todo
2021-10-18 23:02:21 Bryce Harrington nominated for series Ubuntu Jammy
2021-10-18 23:02:21 Bryce Harrington bug task added apache2 (Ubuntu Jammy)
2021-10-18 23:02:28 Bryce Harrington apache2 (Ubuntu Jammy): status New Triaged
2021-10-18 23:02:33 Bryce Harrington apache2 (Ubuntu Jammy): importance Undecided Low
2021-10-18 23:02:43 Bryce Harrington bug added subscriber Ubuntu Server
2021-10-26 18:06:28 Lena Voytek apache2 (Ubuntu Jammy): status Triaged Invalid
2023-11-10 12:16:43 Mitchell Dzurick apache2 (Ubuntu Jammy): status Invalid New
2023-11-10 12:16:56 Mitchell Dzurick apache2 (Ubuntu): status Invalid Confirmed
2023-11-10 12:22:48 Mitchell Dzurick apache2 (Ubuntu): status Confirmed New
2023-11-10 12:28:26 Mitchell Dzurick apache2 (Ubuntu Jammy): status New Invalid
2023-11-13 13:25:22 Athos Ribeiro apache2 (Ubuntu): status New Triaged
2023-11-13 16:59:14 Mitchell Dzurick merge proposal linked https://code.launchpad.net/~mitchdz/ubuntu/+source/apache2/+git/apache2/+merge/455517
2023-11-14 15:32:24 Lena Voytek nominated for series Ubuntu Mantic
2023-11-14 15:32:24 Lena Voytek bug task added apache2 (Ubuntu Mantic)
2023-11-14 15:32:42 Lena Voytek apache2 (Ubuntu Mantic): status New Triaged
2023-11-14 17:49:54 Mitchell Dzurick apache2 (Ubuntu Mantic): assignee Mitchell Dzurick (mitchdz)
2023-11-14 17:49:57 Mitchell Dzurick apache2 (Ubuntu): assignee Mitchell Dzurick (mitchdz)
2023-11-14 17:53:02 Mitchell Dzurick merge proposal linked https://code.launchpad.net/~mitchdz/ubuntu/+source/apache2/+git/apache2/+merge/455564
2023-11-17 23:08:54 Sergio Durigan Junior tags server-todo block-proposed-mantic server-todo
2023-11-17 23:28:40 Mitchell Dzurick description apache2 2.4.29-1ubuntu4.19 Linux Mint 19.3 (Ubuntu 18.04) Once Apache is installed, it installs default home page /var/www/html/index.html That file refers to Ubuntu logo image, /icons/ubuntu_logo.png, but there is no /var/www/html/icons folder. This is fragment of html code from index.html: <div class="page_header floating_element"> <img src="/icons/ubuntu-logo.png" alt="Ubuntu Logo" class="floating_element"> <span class="floating_element"> Apache2 Ubuntu Default Page </span> </div> I fixed this cosmetic problem in the way I created symbolic link: ln -s /usr/share/apache2/icons /var/www/html/icons [ Impact ] The default page of apache2 is missing the Ubuntu branding. [ Test Plan ] 1. Create an ubuntu desktop VM $ lxc launch images:ubuntu/23.10/desktop mantic-desktop --vm -c limits.cpu=4 -c limits.memory=4GiB --console=vga 2. Install required packages $ sudo apt update -y && sudo apt install -y apache2 $ sudo snap install firefox 3. Open firefox and type in "localhost" [ Where problems could occur ] 1. Specific browsers could not render the image properly. Only firefox was tested here. 2. Adding the image into the package will increase the package size. Uncompressed image is 7.3K
2023-11-17 23:28:50 Mitchell Dzurick description [ Impact ] The default page of apache2 is missing the Ubuntu branding. [ Test Plan ] 1. Create an ubuntu desktop VM $ lxc launch images:ubuntu/23.10/desktop mantic-desktop --vm -c limits.cpu=4 -c limits.memory=4GiB --console=vga 2. Install required packages $ sudo apt update -y && sudo apt install -y apache2 $ sudo snap install firefox 3. Open firefox and type in "localhost" [ Where problems could occur ] 1. Specific browsers could not render the image properly. Only firefox was tested here. 2. Adding the image into the package will increase the package size. Uncompressed image is 7.3K [ Impact ] The default page of apache2 is missing the Ubuntu branding. [ Test Plan ] 1. Create an ubuntu desktop VM $ lxc launch images:ubuntu/23.10/desktop mantic-desktop --vm -c limits.cpu=4 -c limits.memory=4GiB --console=vga 2. Install required packages $ sudo apt update -y && sudo apt install -y apache2 $ sudo snap install firefox 3. Open firefox and type in "localhost" [ Where problems could occur ] 1. Specific browsers could not render the image properly. Only firefox was tested here. 2. Adding the image into the package will increase the package size. Uncompressed image is 7.3K
2023-11-18 03:43:31 Ubuntu Archive Robot bug added subscriber Sergio Durigan Junior
2023-11-19 22:01:15 Launchpad Janitor apache2 (Ubuntu): status Triaged Fix Released
2023-11-21 16:24:21 Sergio Durigan Junior apache2 (Ubuntu Mantic): status Triaged In Progress
2024-01-09 14:41:24 Mitchell Dzurick merge proposal linked https://code.launchpad.net/~mitchdz/ubuntu/+source/apache2/+git/apache2/+merge/458256
2024-01-09 14:53:36 Mitchell Dzurick description [ Impact ] The default page of apache2 is missing the Ubuntu branding. [ Test Plan ] 1. Create an ubuntu desktop VM $ lxc launch images:ubuntu/23.10/desktop mantic-desktop --vm -c limits.cpu=4 -c limits.memory=4GiB --console=vga 2. Install required packages $ sudo apt update -y && sudo apt install -y apache2 $ sudo snap install firefox 3. Open firefox and type in "localhost" [ Where problems could occur ] 1. Specific browsers could not render the image properly. Only firefox was tested here. 2. Adding the image into the package will increase the package size. Uncompressed image is 7.3K [ Impact ] The default page of apache2 is missing the Ubuntu branding. [ Test Plan ] There is a much more convenient way of testing this that I am doing just for Mantic. The way that Noble was tested is the Older "heavy" method. (New method) 1. Create an lxd container $ lxc launch ubuntu:mantic mantic-apache2 2. update the archives, and install apache2 $ lxc exec mantic-apache2 -- sudo apt update -y $ lxc exec mantic-apache2 -- sudo apt install -y apache2 3. Get the ip address $ lxc exec mantic-apache2 -- hostname -I | cut -d' ' -f1 4. Open up any browser and put the IP address from step 3 in. (Older "heavy" method) 1. Create an ubuntu desktop VM $ lxc launch images:ubuntu/23.10/desktop mantic-desktop --vm -c limits.cpu=4 -c limits.memory=4GiB --console=vga 2. Install required packages $ sudo apt update -y && sudo apt install -y apache2 $ sudo snap install firefox 3. Open firefox and type in "localhost" [ Where problems could occur ] 1. Specific browsers could not render the image properly. Only firefox was tested here. 2. Adding the image into the package will increase the package size. Uncompressed image is 7.3K
2024-01-12 14:59:39 Timo Aaltonen apache2 (Ubuntu Mantic): status In Progress Fix Committed
2024-01-12 14:59:40 Timo Aaltonen bug added subscriber Ubuntu Stable Release Updates Team
2024-01-12 14:59:42 Timo Aaltonen bug added subscriber SRU Verification
2024-01-12 14:59:46 Timo Aaltonen tags block-proposed-mantic server-todo block-proposed-mantic server-todo verification-needed verification-needed-mantic
2024-02-07 20:51:16 Robie Basak tags block-proposed-mantic server-todo verification-needed verification-needed-mantic server-todo verification-needed verification-needed-mantic
2024-02-15 17:51:16 Mitchell Dzurick tags server-todo verification-needed verification-needed-mantic server-todo verification-done verification-done-mantic
2024-02-20 23:53:22 Launchpad Janitor apache2 (Ubuntu Mantic): status Fix Committed Fix Released
2024-02-20 23:53:30 Brian Murray removed subscriber Ubuntu Stable Release Updates Team