3

Using Delphi 11 Alexandria on a Windows 10 PC. I am deploying to a Cloud "Linux" server. This works, but the path it uses on Linux is too convoluted and not what I want.

The DocWiki tells me to change the Remote Machine Information in the "Connection Profile". But I am unable to see any such field.

So, how do I change the path on the Linux machine?

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770
Rohit Gupta
  • 4,022
  • 20
  • 31
  • 41
  • For Delphi 11 use Project -> Deployment, and set the remote path as needed. Note that by default PAServer runs in restricted mode and won't copy files outside of the scratch directory. – Brian Oct 08 '21 at 09:39
  • @Brian, if there was such a field to change, I would not be asking the question. For the project, with Linux set as Target. Under Deployment there is only subitem "Provisioning" which has two fields Target and Build Type. There nothing else, certainly nothing with Remote in its name. Are you saying that you can see this Delphi 11 on your machine ? – Rohit Gupta Oct 08 '21 at 23:53
  • From the Delphi main menu: Project -> Deployment. Couple entries from the bottom of the menu. – Brian Oct 09 '21 at 00:43

1 Answers1

3

One place to set the target directory for each deployment file is from the Delphi main menu: Project -> Deployment where you can select a given Platform and Release type. Can edit the field directly in the list shown.

enter image description here

Note that by default PAServer runs in restricted mode and will not place files outside of the scratch directory. Look at the docs for PAServer for the command line parameter to run unrestricted.

Brian
  • 6,717
  • 2
  • 23
  • 31