Answer the question
In order to leave comments, you need to log in
How to organize work on the Bitrix combat site?
In order not to break a working site, you need to create a copy of it.
But the question arises: create a local copy or on the same hosting?
If on a hosting, then how to implement it and not duplicate the upload folder, but redirect to it (it weighs a lot).
And are there any features of working with git?
Answer the question
In order to leave comments, you need to log in
locally of course. As for the upload folder, you can proxy requests at the web server level.
Example for nginx:
location ~ ^/upload/? {
try_files $uri @prod;
}
location @prod {
proxy_pass https://production-site.ru:443;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question