Skip to content

Commit 2203717

Browse files
committed
fix typo
1 parent ca8919e commit 2203717

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Bonus: custom github actions for easy CI\CD rollout.
1313

1414
## Configuration
1515

16-
1. Fork it
16+
1. Generate repo based on template
1717
2. Identify your routes (domain -> service)
1818
3. Configure `ect/service.conf` according to your needs. Check `examples` folder for inspiration.
1919
4. Configure docker-compose.yaml (environment, ports)

etc/service.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
server {
2-
server_name domain.dev;
2+
server_name you-domain.com;
33

44
# list all publically available ports for domain
55
listen 80;
66
listen 443;
77

8-
root /var/www/app;
8+
root /var/www/you-domain;
99

1010
autoindex on;
1111

examples/static.routing.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ server {
55
listen 80;
66
listen 443;
77

8-
root /var/www/app;
8+
root /var/www/you-domain.com;
99

1010
autoindex on;
1111

@@ -26,7 +26,7 @@ server {
2626
listen 80;
2727
listen 443;
2828

29-
root /var/www/app-dev;
29+
root /var/www/sub.you-domain;
3030

3131
autoindex on;
3232

0 commit comments

Comments
 (0)