Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

File Input Render Issue #2725

Merged
merged 26 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
08b4be9
- small grammar fix
elipe17 Aug 24, 2023
9fd0630
- Fix lint suggestions
elipe17 Aug 28, 2023
29a9463
- updated message
elipe17 Aug 28, 2023
66b87f4
- Fixed lint errors
elipe17 Aug 28, 2023
6ead8b4
- Added correct extension to datafiles without one
elipe17 Aug 31, 2023
153472a
- Adding cherry picks for file extension error handling
elipe17 Aug 31, 2023
e2b1551
- Updated regex
elipe17 Sep 5, 2023
457c1ca
Merge branch 'develop' of https://github.com/raft-tech/TANF-app into …
elipe17 Sep 5, 2023
4897d13
Merge branch 'develop' of https://github.com/raft-tech/TANF-app into …
elipe17 Sep 13, 2023
1520097
- updating to keep file in dropbox in event of error to help user cor…
elipe17 Sep 19, 2023
0a5bae7
Merge branch 'develop' of https://github.com/raft-tech/TANF-app into …
elipe17 Sep 19, 2023
bb678c3
Merge branch 'develop' into 2664-ext-msg-2
ADPennington Sep 22, 2023
c997c69
- Fix icon rendering incorrectly
elipe17 Sep 27, 2023
bd8f1d4
Merge branch 'develop' of https://github.com/raft-tech/TANF-app into …
elipe17 Sep 27, 2023
db95f4f
Merge branch 'develop' into 2664-ext-msg-2
reitermb Sep 29, 2023
6a056a8
update test file extensions
jtimpe Sep 29, 2023
b4b3512
- making timeout longer
elipe17 Oct 3, 2023
2ab881b
Merge branch '2664-ext-msg-2' of https://github.com/raft-tech/TANF-ap…
elipe17 Oct 3, 2023
46acf0a
- Resolved issue causing test failure
elipe17 Oct 3, 2023
55bdc1c
- passing param
elipe17 Oct 3, 2023
41221b4
Merge branch 'develop' into 2664-ext-msg-2
ADPennington Oct 4, 2023
4d0ae48
Merge branch 'develop' of https://github.com/raft-tech/TANF-app into …
elipe17 Oct 10, 2023
3b7d24c
Merge branch 'develop' of https://github.com/raft-tech/TANF-app into …
elipe17 Oct 11, 2023
3d9d70d
- updated nginx conf
elipe17 Oct 11, 2023
e01e96b
Merge branch 'develop' of https://github.com/raft-tech/TANF-app into …
elipe17 Oct 13, 2023
9f9a8ee
Merge branch 'develop' into 2664-render-issue
andrew-jameson Nov 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tdrs-frontend/nginx/cloud.gov/buildpack.nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ http {
log_format compression '$remote_addr - $remote_user [$time_local] '
'"proxy_host and upstream_addr": $proxy_host $upstream_addr, '
' "request": $request, '
'"body_bytes_sent" : $body_bytes_sent, '
'"body_bytes_sent" : $body_bytes_sent, '
'"request_body": $request_body, '
'"http_x_forwarded_for": $http_x_forwarded_for, '
'"http_x_forwarded_for": $http_x_forwarded_for, '
'"host": $host, '
' "status": $status, '
'"proxy_add_x_forwarded_for": $proxy_add_x_forwarded_for, '
Expand All @@ -47,7 +47,7 @@ http {
}

client_max_body_size 100m;

# Block all requests except ones listed in whitelist; disabled for local
# First have to correct the source IP address using real_ip_header, otherwise
# the IP address will be the internal IP address of the router
Expand All @@ -63,7 +63,7 @@ http {
set $CSP "default-src 'self';";
set $CSP "${CSP}script-src 'self';";
set $CSP "${CSP}script-src-elem 'self';";
set $CSP "${CSP}script-src-attr 'self';";
set $CSP "${CSP}script-src-attr 'self' 'unsafe-inline';";
set $CSP "${CSP}img-src 'self' data:;";
set $CSP "${CSP}font-src 'self';";
set $CSP "${CSP}connect-src 'self' ${CONNECT_SRC};";
Expand Down
6 changes: 3 additions & 3 deletions tdrs-frontend/nginx/local/default.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ http {
set $CSP "${CSP}prefetch-src 'none';";
set $CSP "${CSP}form-action *;";
set $CSP "${CSP}script-src-elem 'self' http://localhost:* http://www.w3.org;";
set $CSP "${CSP}script-src-attr 'self';";
set $CSP "${CSP}script-src-attr 'self' 'unsafe-inline';";
set $CSP "${CSP}style-src-elem 'self' 'unsafe-inline';";
set $CSP "${CSP}style-src-attr 'self';";
set $CSP "${CSP}worker-src 'none';";
Expand All @@ -104,7 +104,7 @@ http {

access_log /dev/stdout compression;
#access_log stderr compression;

# Content caching
# saves cached fies in /tmp
# cache zone name = tdp_cache
Expand All @@ -126,7 +126,7 @@ http {
set $CSP "default-src 'self';";
set $CSP "${CSP}script-src 'self';";
set $CSP "${CSP}script-src-elem 'self';";
set $CSP "${CSP}script-src-attr 'self';";
set $CSP "${CSP}script-src-attr 'self' 'unsafe-inline';";
set $CSP "${CSP}img-src 'self' data:;";
set $CSP "${CSP}font-src 'self';";
set $CSP "${CSP}manifest-src 'self';";
Expand Down
Loading