We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6e45d commit 7b735e3Copy full SHA for 7b735e3
scripts/http_host/http_host_lib/templates/nginx_cf.conf
@@ -38,6 +38,18 @@ server {
38
add_header Cache-Control public;
39
}
40
41
+ location /sprites/ {
42
+ # trailing slash
43
+
44
+ alias /data/ofm/http_host/assets/sprites/; # trailing slash
45
+ try_files $uri =404;
46
47
+ expires 1d; # target 10y
48
49
+ add_header 'Access-Control-Allow-Origin' '*' always;
50
+ add_header Cache-Control public;
51
+ }
52
53
location /ne2_shaded/ {
54
# trailing slash
55
ssh_lib/kernel.py
@@ -1,5 +1,4 @@
1
-from ssh_lib import ASSETS_DIR
2
-from ssh_lib.utils import put, put_str
+from ssh_lib.utils import put_str
3
4
5
def kernel_somaxconn65k(c):
0 commit comments