From 47b30cea327420ed6f17ccc6fd521ad89f4b4e4f Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 7 Mar 2021 09:59:14 +0100 Subject: Add Makefiles and implement Config Parser in server.py --- src/config.ini | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'src/config.ini') diff --git a/src/config.ini b/src/config.ini index 2a67194..c91e9ce 100644 --- a/src/config.ini +++ b/src/config.ini @@ -1,5 +1,23 @@ +; This section is for the configuration of xengineerings web-template. +; You can use additional sections for other purposes. [web-template] + +; Choose a project_name containing only characters and underscores. +; This project_name is used for the systemd service of your +; application (/etc/systemd/system/.service) and the +; folder in /opt where your application is deployed +; (/opt//). project_name=my_web_server -friendly_project_name=My first web Server + +; Choose a project_description to be used for the systemd unit. +project_description=A template for Web Applications + +; Select a linux user and group for execution +user=http +group=http + +; Select an IP address and port to bind to. +address=127.0.0.1 +port=8080 -- cgit v1.2.3-70-g09d2