Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.

Commit 100a8a7

Browse files
committed
Fix Let's Encrypt ACME URLs
1 parent 66b6111 commit 100a8a7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

copy/opt/local/etc/nginx/nginx.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ http {
2020
listen [::]:80;
2121
server_name _;
2222

23+
location /.well-known/acme-challenge/ { root /var/letsencrypt/acme/; }
2324
return 301 https://$host$request_uri;
2425
}
2526

@@ -32,6 +33,7 @@ http {
3233
ssl_certificate ssl/nginx.crt;
3334
ssl_certificate_key ssl/nginx.key;
3435

36+
location /.well-known/acme-challenge/ { root /var/letsencrypt/acme/; }
3537
location / {
3638
proxy_pass http://localhost:3000;
3739
}

manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name="core-gogs"
22
organization="SkyLime"
33
brand="Instance"
4-
version="16.4.0"
4+
version="16.4.1"
55
description="core.io Gogs - Go Git Service"
66
homepage="https://github.com/skylime/mi-core-gogs"
77
users="root admin"

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "core-gogs",
3-
"version": "16.4.0",
3+
"version": "16.4.1",
44
"description": "core.io Gogs - Go Git Service",
55
"organization": "SkyLime",
66
"brand": "Instance",

0 commit comments

Comments
 (0)