Appache http server project

Good evening, everyone.

A colleague of mine just set up his local websites using Apache.

In his Zima OS, he apparently set up his sites using this utility:

I’m not familiar with it.

Do you know how it works?

How do you set up local websites with httpd?

I didn’t understand what he did.

Apparently, he assigned the local IP address of his Zima OS to his websites along with a random port number he chose himself.

Translated with DeepL.com (free version)

here are some photos .
if you could explain it to me .

@dany_wilde You can try to modify and import the yaml file below, and replace the /DATA/html path or the content in its folder at any time to deploy the static site. Finally accessed through port 8089 (you can also try to modify it)

services:
  httpd:
    image: httpd:latest
    container_name: httpd
    restart: unless-stopped
    ports:
      - 8089:80
    volumes:
      - /DATA/html:/usr/local/apache2/htdocs/
x-casaos:
  title:
    custom: my httpd app
  main: httpd
  scheme: http
  index: /
  port_map: "8089"

have fun;

thanks