Skip to content

Instantly share code, notes, and snippets.

View mercurieus's full-sized avatar
📷
Focusing

Yurii Ihumnov mercurieus

📷
Focusing
View GitHub Profile
@mercurieus
mercurieus / bitbucket-pipelines.yml
Created June 10, 2025 22:29 — forked from wirths/bitbucket-pipelines.yml
Bitbucket Pipelines - Create Pull Request (PR) with default reviewers
image: node:12
definitions:
steps:
- step: &create-pr
name: Create Pull Request
caches:
- node
script:
- apt-get update
@mercurieus
mercurieus / magento2-s3-media-with-local-fallback.conf
Created June 9, 2025 21:35
Nginx config - Magento 2 Remote Storage (S3) media files handling with local fallback option
location ~ ^/media/theme_customization/.*\.xml$ {
deny all;
}
location /media/ {
# Try S3 first
resolver 8.8.8.8 valid=60s;
set $bucket "your-bucket-magento-media";
set $served_by "S3-Direct";