Skip to content

Commit

Permalink
testing 13
Browse files Browse the repository at this point in the history
  • Loading branch information
dasscheman committed Sep 13, 2024
1 parent 6e81516 commit 71a9904
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openshift/vhost.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ server {
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
try_files $uri /index.php?$args;
try_files $uri $uri/ /index.php?q=$uri&$args;
gzip_static off;
}

location ~ \.php$ {
Expand Down
6 changes: 6 additions & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ export default defineConfig({
'~bootstrap': path.resolve(__dirname, 'node_modules/bootstrap'),
}
},
server: {
port: 7050,
hmr: {
host: 'localhost',
},
},
// server: {
// https: {
// key: fs.readFileSync('docker/certificates/docker.dev.key'),
Expand Down

0 comments on commit 71a9904

Please sign in to comment.