mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
14 lines
332 B
Bash
Executable file
14 lines
332 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
|
|
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
|