• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Ubuntu 24.04 LTS and Apache default ip folder

LRLD

New Pleskian
Server operating system version
Ubuntu 24.04
Plesk version and microupdate number
18.0.63 Update #1
Hi everyone,

I noticed something I wasn't expecting on my new Ubuntu 24 servers...When I download the /etc/apache2/plesk.conf.d/ip_default/my-domain.tld.conf file, instead of getting the full apache config file like I used to, I get...

#ATTENTION!
#
#DO NOT MODIFY THIS FILE BECAUSE IT WAS GENERATED AUTOMATICALLY,
#SO ALL YOUR CHANGES WILL BE LOST THE NEXT TIME THE FILE IS GENERATED.
#IF YOU REQUIRE TO APPLY CUSTOM MODIFICATIONS, PERFORM THEM IN THE FOLLOWING FILES:
#/var/www/vhosts/system/my-domain.tld/conf/vhost.conf
#/var/www/vhosts/system/my-domain.tld/conf/vhost_ssl.conf

The full config file for the default website for the ip now resides in /etc/apache2/plesk.conf.d/vhosts.
Is this correct? Because the corresponding Nginx file is still in the /etc/nginx/plesk.conf.d/ip_default folder, where I'd expect.

I have checked both of my Ubuntu 24 servers, and both are showing the same.
Thanks in advance for your help.

Regards

LD
 
To put it another way...

Apache
cat /etc/apache2/plesk.conf.d/ip_default/domain.com.conf
#ATTENTION!
#
#DO NOT MODIFY THIS FILE BECAUSE IT WAS GENERATED AUTOMATICALLY,
#SO ALL YOUR CHANGES WILL BE LOST THE NEXT TIME THE FILE IS GENERATED.
#IF YOU REQUIRE TO APPLY CUSTOM MODIFICATIONS, PERFORM THEM IN THE FOLLOWING FILES:
#/var/www/vhosts/system/domain.com/conf/vhost.conf
#/var/www/vhosts/system/domain.com/conf/vhost_ssl.conf

and

Nginx
cat /etc/nginx/plesk.conf.d/ip_default/domain.com.conf
#ATTENTION!
#
#DO NOT MODIFY THIS FILE BECAUSE IT WAS GENERATED AUTOMATICALLY,
#SO ALL YOUR CHANGES WILL BE LOST THE NEXT TIME THE FILE IS GENERATED.

server {
listen 123.456.7.8:443 quic;
add_header Alt-Svc 'h3=":443"; ma=86400';
listen 123.456.7.8:443 default_server ssl;
http2 on;

continued ~~~~~~

As you can see, the Nginx file is as expected for the IP addresses default website.
I have to "cat /etc/apache2/plesk.conf.d/vhosts/domain.com.conf" to get the expected Apache file....

cat /etc/apache2/plesk.conf.d/vhosts/domain.com.conf
#ATTENTION!
#
#DO NOT MODIFY THIS FILE BECAUSE IT WAS GENERATED AUTOMATICALLY,
#SO ALL YOUR CHANGES WILL BE LOST THE NEXT TIME THE FILE IS GENERATED.
#IF YOU REQUIRE TO APPLY CUSTOM MODIFICATIONS, PERFORM THEM IN THE FOLLOWING FILES:
#/var/www/vhosts/system/domain.com/conf/vhost.conf
#/var/www/vhosts/system/domain.com/conf/vhost_ssl.conf
<IfModule mod_ssl.c>

<VirtualHost 127.0.0.1:7081 >
ServerName "domain.com"
ServerAlias "www.domain.com"
ServerAlias "ipv4.domain.com"
ServerAlias "123.456.7.8"
UseCanonicalName Off

continued ~~~~~~

I hope that explains it a bit better.
Is /etc/apache2/plesk.conf.d/ip_default/ supposed to be used?

Thanks again

LD
 
Back
Top