9 lines
201 B
Bash
Executable file
9 lines
201 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# Copyright (c) 2024 Interstellar Development
|
|
|
|
sudo apt update
|
|
sudo apt install -y nginx
|
|
sudo systemctl start nginx
|
|
sudo systemctl enable nginx
|