- JWT auth with bcrypt password hashing, cookie sessions, forgot/reset password - Per-user encrypted credential storage (Redis + AES-256-GCM) for all 9 platforms - Usage tracking with monthly limits per plan (free/starter/growth/enterprise) - Invoice generation and retrieval (admin + user views) - Admin panel with customer listing (role-based access) - Web app UI at app.squaremcp.com — login, dashboard, connections, usage, invoices - Unified auth middleware: API key, OAuth Bearer, and JWT cookie support - Facebook Graph API fixes: published_posts endpoint, photo/video post support - TikTok sandbox compliance: SELF_ONLY privacy for unaudited apps - URL verification files for TikTok app review
18 lines
1.2 KiB
Docker
18 lines
1.2 KiB
Docker
FROM nginx:1.27-alpine
|
|
|
|
COPY product/site/nginx-site.conf /etc/nginx/conf.d/default.conf
|
|
COPY product/site/index.html /usr/share/nginx/html/index.html
|
|
COPY product/site/styles.css /usr/share/nginx/html/styles.css
|
|
COPY product/site/script.js /usr/share/nginx/html/script.js
|
|
COPY product/site/squaremcp-logo.svg /usr/share/nginx/html/squaremcp-logo.svg
|
|
COPY product/site/squaremcp-hero-loop.mp4 /usr/share/nginx/html/squaremcp-hero-loop.mp4
|
|
COPY product/site/squaremcp-tiktok-launch.mp4 /usr/share/nginx/html/squaremcp-tiktok-launch.mp4
|
|
COPY product/site/tiktok /usr/share/nginx/html/tiktok
|
|
COPY product/site/tiktokkFNJHjzDuzvGIlXnK4MaGw3MSluybOih.txt /usr/share/nginx/html/tiktokkFNJHjzDuzvGIlXnK4MaGw3MSluybOih.txt
|
|
COPY product/site/privacy.html /usr/share/nginx/html/privacy.html
|
|
COPY product/site/privacy /usr/share/nginx/html/privacy
|
|
COPY product/site/terms.html /usr/share/nginx/html/terms.html
|
|
COPY product/site/terms /usr/share/nginx/html/terms
|
|
COPY product/site/tiktok/tiktokIIxGZsCAoYNJVObSA8cYj8FyWrAu1nIW.txt /usr/share/nginx/html/tiktokIIxGZsCAoYNJVObSA8cYj8FyWrAu1nIW.txt
|
|
COPY product/site/tiktok/tiktokwJMUoUxgRBFO9T8p08qlMgtsez0Ktr9y.txt /usr/share/nginx/html/tiktokwJMUoUxgRBFO9T8p08qlMgtsez0Ktr9y.txt
|