Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/default_profiles/servers/nginx.py
blob: 6038616cb8e56780bae2667bc818cef9b5adac11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from typing import List

from archinstall.default_profiles.profile import Profile, ProfileType


class NginxProfile(Profile):
	def __init__(self):
		super().__init__(
			'Nginx',
			ProfileType.ServerType
		)

	@property
	def packages(self) -> List[str]:
		return ['nginx']

	@property
	def services(self) -> List[str]:
		return ['nginx']