mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
For the `git` service, ./data is always used to provide an optional overriding of ssh host keys. In aur-dev production containers, most services which use the data mount use an internal Docker `data` volume instead. Signed-off-by: Kevin Morris <kevr@0cost.org>
16 lines
427 B
Bash
Executable file
16 lines
427 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "=== Running nginx server! ==="
|
|
echo
|
|
echo " Services:"
|
|
echo " - FastAPI : https://localhost:8444/"
|
|
echo " (cgit) : https://localhost:8444/cgit/"
|
|
echo " - PHP : https://localhost:8443/"
|
|
echo " (cgit) : https://localhost:8443/cgit/"
|
|
echo
|
|
echo " Note: Copy root CA (./data/ca.root.pem) to ca-certificates or browser."
|
|
echo
|
|
echo " Thanks for using aurweb!"
|
|
echo
|
|
|
|
exec nginx -c /etc/nginx/nginx.conf
|