mirror of
https://github.com/penpot/penpot.git
synced 2025-04-06 03:51:21 -05:00
✨ Improve cache handling.
And make the devenv http server behave similar to a production environment (related to cache handling).
This commit is contained in:
parent
935b835853
commit
8c18e9bfbf
12 changed files with 160 additions and 8 deletions
|
@ -31,6 +31,7 @@ RUN set -ex; \
|
|||
build-essential \
|
||||
imagemagick \
|
||||
webp \
|
||||
nginx \
|
||||
jq \
|
||||
redis-tools \
|
||||
; \
|
||||
|
|
|
@ -29,6 +29,7 @@ services:
|
|||
- "user_data:/home/uxbox/local"
|
||||
- "${HOME}/.m2:/home/uxbox/.m2"
|
||||
- "${PWD}:/home/uxbox/uxbox"
|
||||
- ./files/nginx.conf:/etc/nginx/nginx.conf
|
||||
|
||||
ports:
|
||||
- 3447:3447
|
||||
|
|
|
@ -3,6 +3,9 @@
|
|||
set -e;
|
||||
source ~/.zshrc
|
||||
|
||||
echo "[init.sh] Start nginx."
|
||||
sudo nginx
|
||||
|
||||
echo "[init.sh] Setting up local permissions."
|
||||
sudo chown -R uxbox /home/uxbox/local
|
||||
|
||||
|
|
95
docker/devenv/files/nginx.conf
Normal file
95
docker/devenv/files/nginx.conf
Normal file
|
@ -0,0 +1,95 @@
|
|||
user www-data;
|
||||
worker_processes auto;
|
||||
pid /run/nginx.pid;
|
||||
include /etc/nginx/modules-enabled/*.conf;
|
||||
|
||||
events {
|
||||
worker_connections 768;
|
||||
# multi_accept on;
|
||||
}
|
||||
|
||||
http {
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
keepalive_timeout 65;
|
||||
types_hash_max_size 2048;
|
||||
# server_tokens off;
|
||||
|
||||
# server_names_hash_bucket_size 64;
|
||||
# server_name_in_redirect off;
|
||||
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log;
|
||||
|
||||
gzip on;
|
||||
|
||||
gzip_vary on;
|
||||
gzip_proxied any;
|
||||
gzip_comp_level 6;
|
||||
gzip_buffers 16 8k;
|
||||
gzip_http_version 1.1;
|
||||
|
||||
gzip_types text/plain text/css text/javascript application/javascript application/json application/transit+json;
|
||||
|
||||
map $http_upgrade $connection_upgrade {
|
||||
default upgrade;
|
||||
'' close;
|
||||
}
|
||||
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
|
||||
|
||||
server {
|
||||
listen 3449 default_server;
|
||||
server_name _;
|
||||
|
||||
client_max_body_size 5M;
|
||||
charset utf-8;
|
||||
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Scheme $scheme;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
|
||||
root /home/uxbox/uxbox/frontend/resources/public;
|
||||
# root /home/uxbox/uxbox/frontend/target/dist;
|
||||
etag off;
|
||||
|
||||
|
||||
location ~* \.(js|css).*$ {
|
||||
add_header Cache-Control "max-age=86400" always; # 24 hours
|
||||
}
|
||||
|
||||
location = /index.html {
|
||||
add_header Cache-Control "no-cache, max-age=0";
|
||||
}
|
||||
|
||||
location / {
|
||||
try_files $uri /index.html;
|
||||
}
|
||||
|
||||
location /api {
|
||||
proxy_pass http://127.0.0.1:6060/api;
|
||||
}
|
||||
|
||||
location /ws/notifications {
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection 'upgrade';
|
||||
proxy_pass http://127.0.0.1:6060/ws/notifications;
|
||||
}
|
||||
|
||||
location /media {
|
||||
alias /var/www/app/media;
|
||||
}
|
||||
|
||||
location /static {
|
||||
alias /var/www/app/backend/resources/public/static;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -31,7 +31,7 @@
|
|||
funcool/datoteka {:mvn/version "1.2.0"}
|
||||
binaryage/devtools {:mvn/version "RELEASE"}
|
||||
|
||||
thheller/shadow-cljs {:mvn/version "2.8.110"}
|
||||
thheller/shadow-cljs {:mvn/version "2.9.10"}
|
||||
|
||||
lambdaisland/uri {:mvn/version "1.3.45"
|
||||
:exclusions [org.clojure/data.json]}
|
||||
|
|
|
@ -17,6 +17,9 @@ const sass = require("sass");
|
|||
const autoprefixer = require("autoprefixer")
|
||||
const postcss = require("postcss")
|
||||
|
||||
const mapStream = require("map-stream");
|
||||
|
||||
|
||||
const paths = {};
|
||||
paths.resources = "./resources/";
|
||||
paths.output = "./resources/public/";
|
||||
|
@ -130,6 +133,42 @@ function readConfig(data) {
|
|||
return JSON.stringify(cfg);
|
||||
}
|
||||
|
||||
const defaultManifest = {
|
||||
"main": "/js/main.js",
|
||||
"shared": "/js/shared.js",
|
||||
"worker": "js/worker.js"
|
||||
};
|
||||
|
||||
function readManifest() {
|
||||
try {
|
||||
const path = __dirname + "/resources/public/js/manifest.json";
|
||||
const content = JSON.parse(fs.readFileSync(path, {encoding: "utf8"}));
|
||||
|
||||
const index = {};
|
||||
for (let item of content) {
|
||||
index[item.name] = "/js/" + item["output-name"];
|
||||
};
|
||||
|
||||
return index;
|
||||
} catch (e) {
|
||||
console.error("Error on reading manifest, using default.");
|
||||
return defaultManifest;
|
||||
}
|
||||
}
|
||||
|
||||
function touch() {
|
||||
return mapStream(function(file, cb) {
|
||||
if (file.isNull()) {
|
||||
return cb(null, file);
|
||||
}
|
||||
|
||||
// Update file modification and access time
|
||||
return fs.utimes(file.path, new Date(), new Date(), () => {
|
||||
cb(null, file)
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function templatePipeline(options) {
|
||||
return function() {
|
||||
const input = options.input;
|
||||
|
@ -140,11 +179,13 @@ function templatePipeline(options) {
|
|||
const themes = ["default"];
|
||||
|
||||
const locales = readLocales();
|
||||
const config = readConfig({themes});
|
||||
const manifest = readManifest();
|
||||
const config = readConfig({themes, manifest});
|
||||
|
||||
const tmpl = mustache({
|
||||
ts: ts,
|
||||
th: th,
|
||||
manifest: manifest,
|
||||
config: JSON.stringify(config),
|
||||
translations: JSON.stringify(locales),
|
||||
themes: JSON.stringify(themes),
|
||||
|
@ -153,7 +194,8 @@ function templatePipeline(options) {
|
|||
return gulp.src(input)
|
||||
.pipe(tmpl)
|
||||
.pipe(rename("index.html"))
|
||||
.pipe(gulp.dest(output));
|
||||
.pipe(gulp.dest(output))
|
||||
.pipe(touch());
|
||||
};
|
||||
}
|
||||
|
||||
|
|
5
frontend/package-lock.json
generated
5
frontend/package-lock.json
generated
|
@ -3340,6 +3340,11 @@
|
|||
"integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
|
||||
"dev": true
|
||||
},
|
||||
"map-stream": {
|
||||
"version": "0.0.7",
|
||||
"resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz",
|
||||
"integrity": "sha1-ih8HiW2CsQkmvTdEokIACfiJdKg="
|
||||
},
|
||||
"map-visit": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"date-fns": "^2.13.0",
|
||||
"map-stream": "0.0.7",
|
||||
"mousetrap": "^1.6.5",
|
||||
"randomcolor": "^0.5.4",
|
||||
"react": "^16.13.1",
|
||||
|
|
|
@ -16,7 +16,9 @@
|
|||
window.uxboxTranslations = JSON.parse({{& translations }});
|
||||
window.uxboxThemes = {{& themes }};
|
||||
</script>
|
||||
<script src="/js/shared.js?ts={{& ts }}"></script>
|
||||
<script src="/js/main.js?ts={{& ts }}"></script>
|
||||
{{# manifest}}
|
||||
<script src="{{& shared}}"></script>
|
||||
<script src="{{& main}}"></script>
|
||||
{{/manifest}}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
source ~/.bashrc
|
||||
set -ex
|
||||
|
||||
TAG=`git log -n 1 --pretty=format:%H -- ./`
|
||||
|
||||
npm ci
|
||||
|
||||
export NODE_ENV=production;
|
||||
|
@ -10,7 +12,7 @@ export NODE_ENV=production;
|
|||
# Clean the output directory
|
||||
npx gulp clean || exit 1;
|
||||
|
||||
shadow-cljs release main
|
||||
shadow-cljs release main --config-merge "{:release-version \"${TAG}\"}"
|
||||
npx gulp build || exit 1;
|
||||
npx gulp dist:clean || exit 1;
|
||||
npx gulp dist:copy || exit 1;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{:deps {:aliases [:dev]}
|
||||
:dev-http {3449 "classpath:public"}
|
||||
:http {:port 3448}
|
||||
:nrepl {:port 3447}
|
||||
|
||||
|
@ -10,6 +9,7 @@
|
|||
:asset-path "/js"
|
||||
:devtools {:browser-inject :main}
|
||||
:build-options {:manifest-name "manifest.json"}
|
||||
|
||||
:modules
|
||||
{:shared {:entries []}
|
||||
:main {:entries [uxbox.main]
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
(this-as global
|
||||
(let [config (obj/get global "uxboxConfig")
|
||||
puri (obj/get config "publicURI" "http://localhost:3449")
|
||||
buri (obj/get config "backendURI" "http://localhost:6060")
|
||||
buri (obj/get config "backendURI" "http://localhost:3449")
|
||||
gcid (obj/get config "googleClientID" true)
|
||||
warn (obj/get config "demoWarning" true)]
|
||||
(def default-language "en")
|
||||
|
|
Loading…
Add table
Reference in a new issue