Den tis 21 maj 2024 kl 12:55 skrev Jeffrey Walton <noloa...@gmail.com>:

> Hi Everyone,
>
> I'd like to migrate some source code from Git to SVN on my Fedora
> server. The rub is, I'd like to use Nginx instead of Apache.
>

Hi,

Welcome!

Be aware of a difference between Git and Subversion:
In Git, there is only a "repository" (which contains both the history in
the .git directory and all source files).
In Subversion, the "repository" is a specific directory (containing the
history for each file) and then you checkout a "working copy" where you
have the actual source files.


>
> I think I can switch the repo from Git to SVN by performing the
> following at the server:
>
>     cd /var/test-src
>     find . -name '.git' -exec rm -rf {} \;
>     svnadmin create /var/test-src
>

That will only perform part of the job.

First of all you only seem to remove ALL Git repositories but you only
create ONE repository. You should probably create one repository for each
Git repository you had, the repository should be somewhere ELSE than the
directory where you store your source files (/var/repositories/[repository
name]).

Second you need to add the source files from the directory where you had
your Git repository. Easiest is probably to run svn import.

You would probably have to create a small bash script to call in the find
which performs both rm -rf, svnadmin create and svn import.

Last word of caution: when you delete the .git directory you will also
delete all history. Depending on your usecase that might be what you want.



>
> That should stand up the SVN server on the existing source code (that
> was formerly under Git). Also see
> <https://stackoverflow.com/a/4798034>.
>
> What I am less sure about is, how to put a Nginx web front-end on the
> SVN repo. What I have come across is using Apache+Nginx with Nginx in
> a proxy configuration. I would prefer to have a purely Nginx web
> server.
>
> Does anyone have a recommendation for a Nginx web front-end?
>

If you want to access Subversion over HTTP/HTTPS, you need to run Apache
Httpd. If you want to use Nginx in front of Httpd, you can probably find
useful information about how to setup a reverse proxy in front of Httpd.
See https://subversion.apache.org/faq.html#reverseproxy

There are also other options to access the repository, see the Subversion
book: https://svnbook.red-bean.com/en/1.7/svn.serverconfig.choosing.html

Kind regards,
Daniel

Reply via email to