2 Commits

Author SHA1 Message Date
a5b93c1198 1.15.15
All checks were successful
Deploy to Production / deploy (push) Successful in 17s
2026-02-22 15:45:08 +00:00
be014fc3c8 Fix nginx config: remove volume mount, add IPv6 listen, catch-all server_name 2026-02-22 15:45:08 +00:00
4 changed files with 7 additions and 6 deletions

View File

@@ -10,8 +10,8 @@ services:
- "80"
restart: unless-stopped
# Uncomment the following lines if you want to mount the configuration locally for development/testing
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
# volumes:
# - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
networks:
- npm_public

View File

@@ -1,6 +1,7 @@
server {
listen 80;
server_name localhost;
listen [::]:80;
server_name _;
root /usr/share/nginx/html;
index index.html;

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "vue-nonograms-solid",
"version": "1.15.14",
"version": "1.15.15",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "vue-nonograms-solid",
"version": "1.15.14",
"version": "1.15.15",
"dependencies": {
"@capacitor/android": "^8.1.0",
"@capacitor/cli": "^8.1.0",

View File

@@ -1,6 +1,6 @@
{
"name": "vue-nonograms-solid",
"version": "1.15.14",
"version": "1.15.15",
"homepage": "https://nonograms.7u.pl/",
"type": "module",
"scripts": {