]> git.r.bdr.sh - rbdr/r.bdr.sh/blobdiff - nginx_office_hours.gmi
Add meta and timpibot
[rbdr/r.bdr.sh] / nginx_office_hours.gmi
index 64fa63e8f01a32c2f7aee02a0e7d7292dc7cdac8..dbc248015c4f43cf817db6ae42a87f5cc3c8605f 100644 (file)
@@ -4,7 +4,7 @@
 
 Or ngx_http_office_hours_filter_module for short, it's a module for nginx that lets you specify a schedule and only serve content during that time.
 
 
 Or ngx_http_office_hours_filter_module for short, it's a module for nginx that lets you specify a schedule and only serve content during that time.
 
-=> https://git.unlimited.pizza/rbdr/ngx_http_office_hours_filter_module view source @ git.unlimited.pizza
+=> https://git.r.bdr.sh/rbdr/ngx_http_office_hours_filter_module view source @ git.r.bdr.sh
 => https://git.sr.ht/~rbdr/ngx_http_office_hours_filter_module source mirror @ sourcehut
 
 ## Install
 => https://git.sr.ht/~rbdr/ngx_http_office_hours_filter_module source mirror @ sourcehut
 
 ## Install
@@ -44,7 +44,7 @@ Don't use this directive.
 ```
 location / {
   office_hours 8:30-19;
 ```
 location / {
   office_hours 8:30-19;
- }
+}
 ```
 
 ### Example 3: Open monday to saturday from 08:30 AM to 7:00 PM, but closed sundays
 ```
 
 ### Example 3: Open monday to saturday from 08:30 AM to 7:00 PM, but closed sundays
@@ -52,7 +52,7 @@ location / {
 ```
 location / {
   office_hours 8:30-19 closed;
 ```
 location / {
   office_hours 8:30-19 closed;
- }
+}
 ```
 
 ### Example 4: Open weekdays from 08:30 AM to 7:00 PM, Saturdays 10:00 AM to 4:00 PM, closed on sundays
 ```
 
 ### Example 4: Open weekdays from 08:30 AM to 7:00 PM, Saturdays 10:00 AM to 4:00 PM, closed on sundays
@@ -60,7 +60,7 @@ location / {
 ```
 location / {
   office_hours 8:30-19 10-16 closed;
 ```
 location / {
   office_hours 8:30-19 10-16 closed;
- }
+}
 ```
 
 ### Example 5: Open weekdays from 08:30 AM to 7:00 PM, closed on thursdays, reduced hours on weekends.
 ```
 
 ### Example 5: Open weekdays from 08:30 AM to 7:00 PM, closed on thursdays, reduced hours on weekends.
@@ -68,7 +68,7 @@ location / {
 ```
 location / {
   office_hours 8:30-19 closed 8:30-19 10-16 10-16;
 ```
 location / {
   office_hours 8:30-19 closed 8:30-19 10-16 10-16;
- }
+}
 ```
 
 ### Example 6: Closed every day.
 ```
 
 ### Example 6: Closed every day.
@@ -83,5 +83,5 @@ With this directive you can specify additional information for when the server i
 location / {
   office_hours_additional_information "<h1>Additional Information></h1>
     <p>Please do not email us asking to open the website 24/7. Send all complaints to friendship.quest/@ruben</p>"
 location / {
   office_hours_additional_information "<h1>Additional Information></h1>
     <p>Please do not email us asking to open the website 24/7. Send all complaints to friendship.quest/@ruben</p>"
- }
+}
 ```
 ```