aboutsummaryrefslogtreecommitdiffhomepage
path: root/nginx.conf
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-17 20:42:02 +0900
committernsfisis <nsfisis@gmail.com>2026-02-17 20:42:18 +0900
commitc095200dc79f24c0cd17a2e3ba15c85a2971ea9a (patch)
treeb01781d3f1b1fbf65c6240f1a677dd7085202b4a /nginx.conf
parent2f3583212f470f454a8bd4942a36742be92ad62b (diff)
downloadphperkaigi-2026-albatross-c095200dc79f24c0cd17a2e3ba15c85a2971ea9a.tar.gz
phperkaigi-2026-albatross-c095200dc79f24c0cd17a2e3ba15c85a2971ea9a.tar.zst
phperkaigi-2026-albatross-c095200dc79f24c0cd17a2e3ba15c85a2971ea9a.zip
feat: rename iOSDC Japan 2025 references to PHPerKaigi 2026
Replace all remaining references to the forked event name: - Base path: /iosdc-japan/2025/code-battle/ → /phperkaigi/2026/code-battle/ - Display text and HTML titles - CSS utility class: bg-iosdc-japan → bg-phperkaigi - GitHub Actions submodule path: albatross-swift-2025 → albatross-php-2026 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/nginx.conf b/nginx.conf
index 11ac5ed..9e9248c 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -10,11 +10,11 @@ http {
root /var/www;
- location /iosdc-japan/2025/code-battle/files/ {
+ location /phperkaigi/2026/code-battle/files/ {
alias /var/www/files/;
}
- location /iosdc-japan/2025/code-battle/api/ {
+ location /phperkaigi/2026/code-battle/api/ {
proxy_pass http://api-server;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
@@ -22,7 +22,7 @@ http {
proxy_set_header X-Forwarded-Proto $scheme;
}
- location /iosdc-japan/2025/code-battle/admin/ {
+ location /phperkaigi/2026/code-battle/admin/ {
proxy_pass http://api-server;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
@@ -30,8 +30,8 @@ http {
proxy_set_header X-Forwarded-Proto $scheme;
}
- location /iosdc-japan/2025/code-battle/ {
- try_files $uri $uri/ /iosdc-japan/2025/code-battle/index.html;
+ location /phperkaigi/2026/code-battle/ {
+ try_files $uri $uri/ /phperkaigi/2026/code-battle/index.html;
}
}
}