Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uppy-s3_multipart
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
uppy-s3_multipart
Commits
bb133957
Unverified
Commit
bb133957
authored
Oct 03, 2018
by
Janko Marohnić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Recommend configuring Uppy to use relative paths
That should always work, regardless of whether the app is running locally or remotely, so users can just copy-paste this.
parent
bda34237
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
README.md
README.md
+6
-4
No files found.
README.md
View file @
bb133957
...
...
@@ -97,12 +97,13 @@ POST /s3/multipart/:uploadId/complete
DELETE /s3/multipart/:uploadId
```
Finally, in your Uppy configuration pass your app's URL as the
`serverUrl`
:
Finally, in your Uppy configuration set
`serverUrl`
to your app's URL or an
empty string:
```
js
// ...
uppy
.
use
(
Uppy
.
AwsS3Multipart
,
{
serverUrl
:
'
https://your-app.com/'
,
serverUrl
:
'
'
,
// uses relative URLs (pass 'https://your-app.com' for absolute URLs)
})
```
...
...
@@ -163,12 +164,13 @@ map "/s3" do
end
```
In your Uppy configuration point the
`serverUrl`
to your application:
In your Uppy configuration set
`serverUrl`
to your app's URL or an empty
string:
```
js
// ...
uppy
.
use
(
Uppy
.
AwsS3Multipart
,
{
serverUrl
:
"https://your-app.com/"
,
serverUrl
:
''
,
// uses relative URLs (pass 'https://your-app.com' for absolute URLs)
})
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment