You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: products/paas/shopware/faq.md
+14-13Lines changed: 14 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,45 +4,46 @@ nav:
4
4
position: 50
5
5
---
6
6
7
-
##Frequently Asked Questions
7
+
# Frequently Asked Questions
8
8
9
-
###Can I roll back my deployment if I lose my git history?
9
+
## Can I roll back my deployment if I lose my git history?
10
10
11
11
For now, no rollback is possible when you do a force push and lose your git history
12
12
13
-
###Is it possible to write to the local filesystem?
13
+
## Is it possible to write to the local filesystem?
14
14
15
15
No, all containers are stateless, and local file writes are discouraged. Persistent storage must use S3 buckets or other external storage solutions.
16
+
Changes to the filesystem and Shopware code must be made directly in the Git repository.
16
17
17
-
###How can I connect my already deployed application to a new branch?
18
+
## How can I connect my already deployed application to a new branch?
18
19
19
20
The application that you create is linked to a commit SHA and not to a branch. You can change the existing application commit SHA by running `sw-paas application update`. What matters is the commit configured for a given application.
20
21
21
-
###Can I run different applications like Node.js?
22
+
## Can I run different applications like Node.js?
22
23
23
24
No, currently PaaS is limited to Shopware projects.
24
25
25
-
###How are secrets managed in PaaS?
26
+
## How are secrets managed in PaaS?
26
27
27
28
Secrets are stored in the PaaS secret store and can be applied at the organization, project, or application level. They are encrypted in the database and decrypted only when accessed via the CLI.
28
29
29
-
###Can I access the database directly?
30
+
## Can I access the database directly?
30
31
31
32
Yes. Follow the guide on [databases](./resources/databases.md).
32
33
33
-
###Can I customize the infrastructure (e.g., change web server configurations)?
34
+
## Can I customize the infrastructure (e.g., change web server configurations)?
34
35
35
36
No, the infrastructure is opinionated and pre-configured. Customizations at the server level are not allowed.
36
37
37
-
###Are CDN or database configurations customizable?
38
+
## Are CDN or database configurations customizable?
38
39
39
40
No, PaaS uses Fastly as the CDN and provides a fixed database configuration at the moment. Customizations to these resources are currently under development.
40
41
41
-
###Can I host my custom applications?
42
+
## Can I host my custom applications?
42
43
43
44
Custom applications and decoupled storefront hosting will be evaluated based on customer needs but are not currently supported.
44
45
45
-
###What is the difference between `exec` and `command` ?
46
+
## What is the difference between `exec` and `command` ?
46
47
47
48
1.**Container Management**:
48
49
@@ -58,10 +59,10 @@ Custom applications and decoupled storefront hosting will be evaluated based on
58
59
-`exec`: Best for debugging, maintenance, and interactive work
59
60
-`command`: Best for automation, CI/CD, and scheduled tasks
60
61
61
-
###Can I connect to my PaaS instance via SSH
62
+
## Can I connect to my PaaS instance via SSH
62
63
63
64
Yes, you can connect to your PaaS instance — but not via traditional SSH. Instead, we provide a remote terminal session through the `sw-paas exec` CLI command. This command allows you to execute shell commands inside your PaaS environment remotely, effectively giving you SSH-like access for troubleshooting, deployments, or interactive sessions.
64
65
65
-
###Where can I see the status of my PaaS application update?
66
+
## Where can I see the status of my PaaS application update?
66
67
67
68
You can see the status of your PaaS application by running `sw-paas application list`. This command shows the current status of your application, including whether the update was successful or if it's still in progress. To monitor all real-time events associated with the project and its applications run `sw-paas watch` this provides a live stream of events and is especially useful for tracking the progress of an ongoing update.
0 commit comments