preparation-scripts/installation/webserver.sh

10 lines
201 B
Bash
Raw Normal View History

2024-11-18 19:50:04 +01:00
#!/bin/bash
2024-11-23 15:16:52 +01:00
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2024 Interstellar Development
2024-11-18 19:50:04 +01:00
sudo apt update
sudo apt install -y nginx
2024-11-18 20:22:57 +01:00
sudo systemctl start nginx
sudo systemctl enable nginx