Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
by-cx committed Apr 11, 2024
1 parent 4a003c5 commit 67a4062
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions docs/cs/frameworks/vite.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Vite.js

Framework Vite.js běží na straně prohlížeče, tak na straně serveru stačí pouze statický hosting.
Framework Vite.js běží na straně prohlížeče, takže na straně serveru stačí pouze statický hosting.
V administraci tedy vytvoříme novou aplikaci a vybereme technologii "default".
Na lokálním počítači zavoláme `npm run build` a obsah adresář `dist` zkopírujemne na server
do adresáře `/srv/app`.
Expand All @@ -19,14 +19,6 @@ server {
root /srv/app;
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
```

Expand All @@ -36,6 +28,4 @@ Pak zavolejte:
supervisorctl restart nginx
```

A web by měl fungovat na všech doménách nastavených v administraci. Optimálně
je ještě dobré vytvořit soubory `/srv/app/40x.html` a `/srv/app/50x.html`,
které se zobrazí při chybových stavech.
Web by měl teď fungovat na všech doménách nastavených v administraci.

0 comments on commit 67a4062

Please sign in to comment.